summaryrefslogtreecommitdiff
path: root/src/backend/access/heap/heapam.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1998-06-16 02:53:26 +0000
committerBruce Momjian <bruce@momjian.us>1998-06-16 02:53:26 +0000
commitfce7556d339b574f4daf0f45c78fa7d5de62dc9a (patch)
tree0e54ee179df16dc00035d6208472e323769adf80 /src/backend/access/heap/heapam.c
parenta0f95aceb4963731644b8eed0308beac76e9934c (diff)
downloadpostgresql-fce7556d339b574f4daf0f45c78fa7d5de62dc9a.tar.gz
Change error message and remove non-functional update message, from
Vadim.
Diffstat (limited to 'src/backend/access/heap/heapam.c')
-rw-r--r--src/backend/access/heap/heapam.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/backend/access/heap/heapam.c b/src/backend/access/heap/heapam.c
index d246f79151..b23b658f40 100644
--- a/src/backend/access/heap/heapam.c
+++ b/src/backend/access/heap/heapam.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.28 1998/06/15 19:27:51 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.29 1998/06/16 02:53:25 momjian Exp $
*
*
* INTERFACE ROUTINES
@@ -1202,7 +1202,10 @@ heap_delete(Relation relation, ItemPointer tid)
Assert(HeapTupleIsValid(tp));
if (TupleUpdatedByCurXactAndCmd(tp))
{
- elog(NOTICE, "Non-functional delete, tuple already deleted");
+ /*
+ Vadim says this is no longer needed 1998/6/15
+ elog(NOTICE, "Non-functional delete, tuple already deleted");
+ */
if (IsSystemRelationName(RelationGetRelationName(relation)->data))
RelationUnsetLockForWrite(relation);
ReleaseBuffer(b);