diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-09-02 05:42:54 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-09-02 05:42:54 +0000 |
commit | 9fd842c4b20d55746d34a96bc6baec7d2242c2cf (patch) | |
tree | 048b493d65b0b5a531ffab5c0d88bff04b67a072 /src/bin/psql/tab-complete.c | |
parent | 6a8babc206976fdce1ccd8a63b85c1a01dfe148d (diff) |
Add GUC variable to print original query to the server logs when there
is an error, warning, etc.
Gavin Sherry
Diffstat (limited to 'src/bin/psql/tab-complete.c')
-rw-r--r-- | src/bin/psql/tab-complete.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 3611eaec442..72a24e38348 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.61 2002/09/01 23:26:06 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.62 2002/09/02 05:42:54 momjian Exp $ */ /*---------------------------------------------------------------------- @@ -271,7 +271,7 @@ psql_completion(char *text, int start, int end) "default_transaction_isolation", "search_path", "statement_timeout", - + "log_min_error_statement", NULL }; |