We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9d14fcb + 4b5d155 commit 34c5245Copy full SHA for 34c5245
contrib/pg_xtm/pg_dtm.c
@@ -452,6 +452,13 @@ PG_FUNCTION_INFO_V1(dtm_get_current_snapshot_xmin);
452
Datum
453
dtm_get_current_snapshot_xmin(PG_FUNCTION_ARGS)
454
{
455
+ // if (IsolationUsesXactSnapshot()){ /* RR & S */
456
+ // DtmEnsureConnection();
457
+ // DtmGlobalGetSnapshot(DtmConn, DtmNodeId, gtid.xids[DtmNodeId], &DtmSnapshot);
458
+ // Assert(CurrentTransactionSnapshot != NULL);
459
+ // DtmMergeSnapshots(CurrentTransactionSnapshot, &DtmSnapshot);
460
+ // DtmUpdateRecentXmin();
461
+ // }
462
PG_RETURN_INT32(CurrentTransactionSnapshot->xmin);
463
}
464
0 commit comments