We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent1fe0f5b commit01e7631Copy full SHA for 01e7631
src/backend/utils/time/tqual.c
@@ -1065,7 +1065,7 @@ HeapTupleSatisfiesMVCC(HeapTuple htup, Snapshot snapshot,
1065
else
1066
{
1067
/* it must have aborted or crashed */
1068
-//if (!TransactionIdIsInProgress(HeapTupleHeaderGetRawXmin(tuple)))
+if (!TransactionIdIsInProgress(HeapTupleHeaderGetRawXmin(tuple)))
1069
SetHintBits(tuple,buffer,HEAP_XMIN_INVALID,
1070
InvalidTransactionId);
1071
return false;
@@ -1130,7 +1130,7 @@ HeapTupleSatisfiesMVCC(HeapTuple htup, Snapshot snapshot,
1130
if (!TransactionIdDidCommit(HeapTupleHeaderGetRawXmax(tuple)))
1131
1132
1133
-//if (!TransactionIdIsInProgress(HeapTupleHeaderGetRawXmax(tuple)))
+if (!TransactionIdIsInProgress(HeapTupleHeaderGetRawXmax(tuple)))
1134
SetHintBits(tuple,buffer,HEAP_XMAX_INVALID,
1135
1136
return true;