diff options
author | Robert Haas <rhaas@postgresql.org> | 2017-03-17 09:46:58 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2017-03-17 09:48:38 -0400 |
commit | 88e66d193fbaf756b3cc9bf94cad116aacbb355b (patch) | |
tree | cf470d1847bd229b74340223dba532d487d7b0b1 /src/backend/storage/ipc | |
parent | bd9028b824c9c5f97795bb6b7b6f5ce38eb69f98 (diff) |
Rename "pg_clog" directory to "pg_xact".
Names containing the letters "log" sometimes confuse users into
believing that only non-critical data is present. It is hoped
this renaming will discourage ill-considered removals of transaction
status data.
Michael Paquier
Discussion: http://postgr.es/m/CA+Tgmoa9xFQyjRZupbdEFuwUerFTvC6HjZq1ud6GYragGDFFgA@mail.gmail.com
Diffstat (limited to 'src/backend/storage/ipc')
-rw-r--r-- | src/backend/storage/ipc/procarray.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/storage/ipc/procarray.c b/src/backend/storage/ipc/procarray.c index c724a0e9525..0f8f435faff 100644 --- a/src/backend/storage/ipc/procarray.c +++ b/src/backend/storage/ipc/procarray.c @@ -381,7 +381,7 @@ ProcArrayRemove(PGPROC *proc, TransactionId latestXid) * ProcArrayEndTransaction -- mark a transaction as no longer running * * This is used interchangeably for commit and abort cases. The transaction - * commit/abort must already be reported to WAL and pg_clog. + * commit/abort must already be reported to WAL and pg_xact. * * proc is currently always MyProc, but we pass it explicitly for flexibility. * latestXid is the latest Xid among the transaction's main XID and @@ -1174,7 +1174,7 @@ TransactionIdIsInProgress(TransactionId xid) * At this point, we know it's either a subtransaction of one of the Xids * in xids[], or it's not running. If it's an already-failed * subtransaction, we want to say "not running" even though its parent may - * still be running. So first, check pg_clog to see if it's been aborted. + * still be running. So first, check pg_xact to see if it's been aborted. */ xc_slow_answer_inc(); |