File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* 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 $
11
11
*
12
12
*
13
13
* INTERFACE ROUTINES
@@ -1202,7 +1202,10 @@ heap_delete(Relation relation, ItemPointer tid)
1202
1202
Assert (HeapTupleIsValid (tp ));
1203
1203
if (TupleUpdatedByCurXactAndCmd (tp ))
1204
1204
{
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
+ */
1206
1209
if (IsSystemRelationName (RelationGetRelationName (relation )-> data ))
1207
1210
RelationUnsetLockForWrite (relation );
1208
1211
ReleaseBuffer (b );
Original file line number Diff line number Diff line change 9
9
*
10
10
*
11
11
* 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 $
13
13
*
14
14
*-------------------------------------------------------------------------
15
15
*/
@@ -74,7 +74,7 @@ if (1) \
74
74
if (IsAbortedTransactionBlockState()) \
75
75
{ \
76
76
elog(NOTICE, "(transaction aborted): %s", \
77
- "queries ignored until END "); \
77
+ "all queries ignored until end of transaction block "); \
78
78
commandTag = "*ABORT STATE*"; \
79
79
break; \
80
80
} \
You can’t perform that action at this time.
0 commit comments