diff options
author | Peter Eisentraut | 2017-06-30 18:40:50 +0000 |
---|---|---|
committer | Peter Eisentraut | 2017-06-30 18:40:50 +0000 |
commit | 4260c05c6d5ffed8f61d97ec26ebadd991a97c14 (patch) | |
tree | 435597268c5bb7d4d4bd848cc9926cc138789005 | |
parent | 609fa63db6d1e1f2c27a6dd31e9ac8d3b7bcae03 (diff) |
Update code comments for pg_xlog -> pg_wal
Author: Michael Paquier <[email protected]>
-rw-r--r-- | src/bin/pg_basebackup/walmethods.c | 4 | ||||
-rw-r--r-- | src/bin/pg_basebackup/walmethods.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/pg_basebackup/walmethods.c b/src/bin/pg_basebackup/walmethods.c index 5fe02dee72..06d8ab5bc2 100644 --- a/src/bin/pg_basebackup/walmethods.c +++ b/src/bin/pg_basebackup/walmethods.c @@ -31,7 +31,7 @@ #define ZLIB_OUT_SIZE 4096 /*------------------------------------------------------------------------- - * WalDirectoryMethod - write wal to a directory looking like pg_xlog + * WalDirectoryMethod - write wal to a directory looking like pg_wal *------------------------------------------------------------------------- */ @@ -375,7 +375,7 @@ FreeWalDirectoryMethod(void) /*------------------------------------------------------------------------- - * WalTarMethod - write wal to a tar file containing pg_xlog contents + * WalTarMethod - write wal to a tar file containing pg_wal contents *------------------------------------------------------------------------- */ diff --git a/src/bin/pg_basebackup/walmethods.h b/src/bin/pg_basebackup/walmethods.h index f9d2f66d84..3fdc947ab9 100644 --- a/src/bin/pg_basebackup/walmethods.h +++ b/src/bin/pg_basebackup/walmethods.h @@ -80,8 +80,8 @@ struct WalWriteMethod /* * Available WAL methods: - * - WalDirectoryMethod - write WAL to regular files in a standard pg_xlog - * - TarDirectoryMethod - write WAL to a tarfile corresponding to pg_xlog + * - WalDirectoryMethod - write WAL to regular files in a standard pg_wal + * - TarDirectoryMethod - write WAL to a tarfile corresponding to pg_wal * (only implements the methods required for pg_basebackup, * not all those required for pg_receivewal) */ |