mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
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.
This commit is contained in:
@@ -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",
|
||||
|
Reference in New Issue
Block a user