File tree 2 files changed +4
-4
lines changed
src/backend/access/transam
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ parent. This maintains the invariant that child transactions have XIDs later
198
198
than their parents, which is assumed in a number of places.
199
199
200
200
The subsidiary actions of obtaining a lock on the XID and entering it into
201
- pg_subtrans and PG_PROC are done at the time it is assigned.
201
+ pg_subtrans and PGPROC are done at the time it is assigned.
202
202
203
203
A transaction that has no XID still needs to be identified for various
204
204
purposes, notably holding locks. For this purpose we assign a "virtual
Original file line number Diff line number Diff line change @@ -680,12 +680,12 @@ AssignTransactionId(TransactionState s)
680
680
log_unknown_top = true;
681
681
682
682
/*
683
- * Generate a new FullTransactionId and record its xid in PG_PROC and
683
+ * Generate a new FullTransactionId and record its xid in PGPROC and
684
684
* pg_subtrans.
685
685
*
686
686
* NB: we must make the subtrans entry BEFORE the Xid appears anywhere in
687
- * shared storage other than PG_PROC ; because if there's no room for it in
688
- * PG_PROC , the subtrans entry is needed to ensure that other backends see
687
+ * shared storage other than PGPROC ; because if there's no room for it in
688
+ * PGPROC , the subtrans entry is needed to ensure that other backends see
689
689
* the Xid as "running". See GetNewTransactionId.
690
690
*/
691
691
s -> fullTransactionId = GetNewTransactionId (isSubXact );
You can’t perform that action at this time.
0 commit comments