File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/backend/access/transam Expand file tree Collapse file tree 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
198198than their parents, which is assumed in a number of places.
199199
200200The 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.
202202
203203A transaction that has no XID still needs to be identified for various
204204purposes, 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)
680680 log_unknown_top = true;
681681
682682 /*
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
684684 * pg_subtrans.
685685 *
686686 * 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
689689 * the Xid as "running". See GetNewTransactionId.
690690 */
691691 s -> fullTransactionId = GetNewTransactionId (isSubXact );
You can’t perform that action at this time.
0 commit comments