diff options
author | Bruce Momjian | 2011-02-02 21:53:12 +0000 |
---|---|---|
committer | Bruce Momjian | 2011-02-02 21:53:12 +0000 |
commit | 2b6e2dee7805ec5b477af00c01c54c208bf106eb (patch) | |
tree | b3fc5e492d5a57e825eaefa1ac79a8899ebcd469 | |
parent | 9d220fc17eafcbc99fcea7bdbbb246fee473eac7 (diff) |
Fix wrong verb in pg_upgrade text message, per Haas.
-rw-r--r-- | contrib/pg_upgrade/check.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pg_upgrade/check.c b/contrib/pg_upgrade/check.c index fc82be47937..1103e362a44 100644 --- a/contrib/pg_upgrade/check.c +++ b/contrib/pg_upgrade/check.c @@ -186,7 +186,7 @@ output_completion_banner(char *deletion_script_file_name) /* Did we copy the free space files? */ if (GET_MAJOR_VERSION(old_cluster.major_version) >= 804) pg_log(PG_REPORT, - "| Optimizer statistics is not transferred by pg_upgrade\n" + "| Optimizer statistics are not transferred by pg_upgrade\n" "| so consider running:\n" "| \tvacuumdb --all --analyze-only\n" "| on the newly-upgraded cluster.\n\n"); |