diff options
author | Neil Conway <neilc@samurai.com> | 2005-04-08 00:59:59 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2005-04-08 00:59:59 +0000 |
commit | eb4b7a0b778ab2e67e43b41822ddae32803a30e3 (patch) | |
tree | 0373c18823016c90ef3412416d6eb2c25bc41afd /src | |
parent | f53cd94a786cf3240040098adeb9d9a9fe30e5b4 (diff) |
Change the default setting of "add_missing_from" to false. This has been
the long-term plan for this behavior for quite some time, but it is only
possible now that DELETE has a USING clause so that the user can join
other tables in a DELETE statement without relying on this behavior.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/misc/guc.c | 4 | ||||
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 1db12c23135..4658991e734 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -10,7 +10,7 @@ * Written by Peter Eisentraut <peter_e@gmx.net>. * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.257 2005/03/25 16:17:27 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.258 2005/04/08 00:59:59 neilc Exp $ * *-------------------------------------------------------------------- */ @@ -791,7 +791,7 @@ static struct config_bool ConfigureNamesBool[] = NULL }, &add_missing_from, - true, NULL, NULL + false, NULL, NULL }, { {"check_function_bodies", PGC_USERSET, CLIENT_CONN_STATEMENT, diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index 113021fd79f..6b06afcb7fd 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -313,7 +313,7 @@ # - Previous Postgres Versions - -#add_missing_from = true +#add_missing_from = false #regex_flavor = advanced # advanced, extended, or basic #sql_inheritance = true #default_with_oids = false |