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/include | |
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/include')
-rw-r--r-- | src/include/access/slru.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/access/slru.h b/src/include/access/slru.h index cf6edc3bdb3..722867d5d2b 100644 --- a/src/include/access/slru.h +++ b/src/include/access/slru.h @@ -76,7 +76,7 @@ typedef struct SlruSharedData /* * Optional array of WAL flush LSNs associated with entries in the SLRU * pages. If not zero/NULL, we must flush WAL before writing pages (true - * for pg_clog, false for multixact, pg_subtrans, pg_notify). group_lsn[] + * for pg_xact, false for multixact, pg_subtrans, pg_notify). group_lsn[] * has lsn_groups_per_page entries per buffer slot, each containing the * highest LSN known for a contiguous group of SLRU entries on that slot's * page. @@ -119,7 +119,7 @@ typedef struct SlruCtlData SlruShared shared; /* - * This flag tells whether to fsync writes (true for pg_clog and multixact + * This flag tells whether to fsync writes (true for pg_xact and multixact * stuff, false for pg_subtrans and pg_notify). */ bool do_fsync; |