diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-06-29 16:05:57 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-06-29 16:05:57 +0000 |
commit | f889b12be93a83b7864eb1454a27cd145e8fe0ce (patch) | |
tree | f475747908694ca8bfa64c78feb1ea2b7e99d1ec /src/backend/tcop/postgres.c | |
parent | fb2c3289ff1b6d3084abddba04a8086b0409b763 (diff) | |
download | postgresql-f889b12be93a83b7864eb1454a27cd145e8fe0ce.tar.gz postgresql-f889b12be93a83b7864eb1454a27cd145e8fe0ce.zip |
Fix erroneous GUC variable references from commandline-GUC patch.
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 22e440cded7..acf89356e80 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.226 2001/06/25 22:56:04 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.227 2001/06/29 16:05:56 tgl Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -1398,7 +1398,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[], const cha errs++; break; case 'e': - tmp = "show_parser_stats"; + tmp = "show_executor_stats"; break; default: errs++; @@ -1714,7 +1714,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[], const cha if (!IsUnderPostmaster) { puts("\nPOSTGRES backend interactive interface "); - puts("$Revision: 1.226 $ $Date: 2001/06/25 22:56:04 $\n"); + puts("$Revision: 1.227 $ $Date: 2001/06/29 16:05:56 $\n"); } /* |