@@ -38,8 +38,8 @@ typedef struct
38
38
/* Get global transaction XID: returns XID of current transaction if it is global, InvalidTransactionId otherwise */
39
39
TransactionId (* GetGlobalTransactionId )(void );
40
40
41
- /* Is the given XID still-in-progress according to the snapshot (encapsulation of XidInMVCCSnapshot in tqual.c) */
42
- bool (* IsInSnapshot )(TransactionId xid ,Snapshot snapshot );
41
+ /* Is the given XID still-in-progress according to the snapshot (encapsulation of XidInMVCCSnapshot in tqual.c) */
42
+ bool (* IsInSnapshot )(TransactionId xid ,Snapshot snapshot );
43
43
}TransactionManager ;
44
44
45
45
/* Get pointer to transaction manager: actually returns content of TM variable */
@@ -52,7 +52,7 @@ extern TransactionManager PgTM; /* Standard PostgreSQL transaction manager */
52
52
extern bool PgXidInMVCCSnapshot (TransactionId xid ,Snapshot snapshot );
53
53
54
54
extern void PgTransactionIdSetTreeStatus (TransactionId xid ,int nsubxids ,
55
- TransactionId * subxids ,XidStatus status ,XLogRecPtr lsn );
55
+ TransactionId * subxids ,XidStatus status ,XLogRecPtr lsn );
56
56
extern XidStatus PgTransactionIdGetStatus (TransactionId xid ,XLogRecPtr * lsn );
57
57
58
58
extern Snapshot PgGetSnapshotData (Snapshot snapshot );