summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeikki Linnakangas2014-08-22 10:45:38 +0000
committerHeikki Linnakangas2014-08-22 10:45:38 +0000
commit2af93640ad14028297fbc750e4c2338ad11a3c58 (patch)
tree7f902638e8a79898aa1edb00e4bf5b1a31ed223b
parent8d938eb0797e7acd925a2adf72315f8ab1586d83 (diff)
Fix comment in pg_basebackup.
The option is called --tablespace-mapping, not --tablespace. Amit Kapila
-rw-r--r--src/bin/pg_basebackup/pg_basebackup.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/pg_basebackup/pg_basebackup.c b/src/bin/pg_basebackup/pg_basebackup.c
index 18820bd8d9f..8b9acea9f08 100644
--- a/src/bin/pg_basebackup/pg_basebackup.c
+++ b/src/bin/pg_basebackup/pg_basebackup.c
@@ -1260,9 +1260,9 @@ ReceiveAndUnpackTarFile(PGconn *conn, PGresult *res, int rownum)
/*
* Symbolic link
*
- * It's most likely a link in pg_tblspc directory, to
- * the location of a tablespace. Apply any tablespace
- * mapping given on the command line (--tablespace).
+ * It's most likely a link in pg_tblspc directory, to the
+ * location of a tablespace. Apply any tablespace mapping
+ * given on the command line (--tablespace-mapping).
* (We blindly apply the mapping without checking that
* the link really is inside pg_tblspc. We don't expect
* there to be other symlinks in a data directory, but