Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit fce7556

Browse files
committed
Change error message and remove non-functional update message, from
Vadim.
1 parent a0f95ac commit fce7556

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

src/backend/access/heap/heapam.c

+5-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.28 1998/06/15 19:27:51 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.29 1998/06/16 02:53:25 momjian Exp $
1111
*
1212
*
1313
* INTERFACE ROUTINES
@@ -1202,7 +1202,10 @@ heap_delete(Relation relation, ItemPointer tid)
12021202
Assert(HeapTupleIsValid(tp));
12031203
if (TupleUpdatedByCurXactAndCmd(tp))
12041204
{
1205-
elog(NOTICE, "Non-functional delete, tuple already deleted");
1205+
/*
1206+
Vadim says this is no longer needed 1998/6/15
1207+
elog(NOTICE, "Non-functional delete, tuple already deleted");
1208+
*/
12061209
if (IsSystemRelationName(RelationGetRelationName(relation)->data))
12071210
RelationUnsetLockForWrite(relation);
12081211
ReleaseBuffer(b);

src/backend/tcop/utility.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
*
1111
* IDENTIFICATION
12-
* $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.41 1998/06/15 19:29:27 momjian Exp $
12+
* $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.42 1998/06/16 02:53:26 momjian Exp $
1313
*
1414
*-------------------------------------------------------------------------
1515
*/
@@ -74,7 +74,7 @@ if (1) \
7474
if (IsAbortedTransactionBlockState()) \
7575
{ \
7676
elog(NOTICE, "(transaction aborted): %s", \
77-
"queries ignored until END"); \
77+
"all queries ignored until end of transaction block"); \
7878
commandTag = "*ABORT STATE*"; \
7979
break; \
8080
} \

0 commit comments

Comments
 (0)