summaryrefslogtreecommitdiff
path: root/src/bin/scripts/vacuumdb.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2010-02-26 04:14:36 +0000
committerBruce Momjian <bruce@momjian.us>2010-02-26 04:14:36 +0000
commit17b5b9909be74ded7ba54eb684bd311739ca80f2 (patch)
treee4bd44a9bd167b525cf15fdc83b71a0fecfc2b6f /src/bin/scripts/vacuumdb.c
parent637611585b31f05effd1b0912030f54a74b01a37 (diff)
downloadpostgresql-17b5b9909be74ded7ba54eb684bd311739ca80f2.tar.gz
In vacuumdb --help, call analyze "statistics", not "hints".
Diffstat (limited to 'src/bin/scripts/vacuumdb.c')
-rw-r--r--src/bin/scripts/vacuumdb.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/scripts/vacuumdb.c b/src/bin/scripts/vacuumdb.c
index 21abfedae7..4feeb16533 100644
--- a/src/bin/scripts/vacuumdb.c
+++ b/src/bin/scripts/vacuumdb.c
@@ -5,7 +5,7 @@
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/bin/scripts/vacuumdb.c,v 1.36 2010/02/26 02:01:20 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/scripts/vacuumdb.c,v 1.37 2010/02/26 04:14:36 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -336,8 +336,8 @@ help(const char *progname)
printf(_(" -q, --quiet don't write any messages\n"));
printf(_(" -t, --table='TABLE[(COLUMNS)]' vacuum specific table only\n"));
printf(_(" -v, --verbose write a lot of output\n"));
- printf(_(" -z, --analyze update optimizer hints\n"));
- printf(_(" -Z, --analyze-only only update optimizer hints\n"));
+ printf(_(" -z, --analyze update optimizer statistics\n"));
+ printf(_(" -Z, --analyze-only only update optimizer statistics\n"));
printf(_(" --help show this help, then exit\n"));
printf(_(" --version output version information, then exit\n"));
printf(_("\nConnection options:\n"));