diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-08-30 22:18:07 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-08-30 22:18:07 +0000 |
| commit | 26993b2918551552b74b559ab410228dc0670cd5 (patch) | |
| tree | fec5ed9634d32bd3720684da549ee2b9ec59916a /src/bin | |
| parent | 549928d99bab650f684fd69dd5ef95553438a957 (diff) | |
| download | postgresql-26993b2918551552b74b559ab410228dc0670cd5.tar.gz | |
AUTOCOMMIT mode is now an available backend GUC variable; setting it
to false provides more SQL-spec-compliant behavior than we had before.
I am not sure that setting it false is actually a good idea yet; there
is a lot of client-side code that will probably be broken by turning
autocommit off. But it's a start.
Loosely based on a patch by David Van Wie.
Diffstat (limited to 'src/bin')
| -rw-r--r-- | src/bin/psql/tab-complete.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 98dfce1792..0ff42b5ee3 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.59 2002/08/30 18:15:23 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.60 2002/08/30 22:18:07 tgl Exp $ */ /*---------------------------------------------------------------------- @@ -246,6 +246,7 @@ psql_completion(char *text, int start, int end) "australian_timezones", "password_encryption", "transform_null_equals", + "autocommit", "default_statistics_target", "geqo_threshold", |
