diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-09-01 23:26:06 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-09-01 23:26:06 +0000 |
commit | 548d646e65223318e4ccbfdbb25a003568d4c703 (patch) | |
tree | 481b5e8caa2dab79deca1bb48155e6736a8b323d /src/bin/psql/tab-complete.c | |
parent | f4abdd8212380a81e90e6b5bf340a60dfb3068f2 (diff) | |
download | postgresql-548d646e65223318e4ccbfdbb25a003568d4c703.tar.gz postgresql-548d646e65223318e4ccbfdbb25a003568d4c703.zip |
Add log_duration to GUC/postgresql.conf.
Rename debug_print_query to log_statement and rename show_query_stats to
show_statement_stats.
Diffstat (limited to 'src/bin/psql/tab-complete.c')
-rw-r--r-- | src/bin/psql/tab-complete.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 0ff42b5ee3e..3611eaec442 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -3,7 +3,7 @@ * * Copyright 2000-2002 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.60 2002/08/30 22:18:07 tgl Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.61 2002/09/01 23:26:06 momjian Exp $ */ /*---------------------------------------------------------------------- @@ -231,7 +231,8 @@ psql_completion(char *text, int start, int end) "server_min_messages", "client_min_messages", "debug_assertions", - "debug_print_query", + "log_statement", + "log_duration", "debug_print_parse", "debug_print_rewritten", "debug_print_plan", @@ -239,7 +240,7 @@ psql_completion(char *text, int start, int end) "show_parser_stats", "show_planner_stats", "show_executor_stats", - "show_query_stats", + "show_statement_stats", "trace_notify", "explain_pretty_print", "sql_inheritance", |