mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
Remove sql_inheritance GUC.
This backward-compatibility GUC is long overdue for removal. Discussion: http://postgr.es/m/CA+TgmoYe+EG7LdYX6pkcNxr4ygkP4+A=jm9o-CPXyOvRiCNwaQ@mail.gmail.com
This commit is contained in:
@ -440,7 +440,6 @@ char *event_source;
|
||||
bool row_security;
|
||||
bool check_function_bodies = true;
|
||||
bool default_with_oids = false;
|
||||
bool SQL_inheritance = true;
|
||||
|
||||
int log_min_error_statement = ERROR;
|
||||
int log_min_messages = WARNING;
|
||||
@ -1321,15 +1320,6 @@ static struct config_bool ConfigureNamesBool[] =
|
||||
false,
|
||||
NULL, NULL, NULL
|
||||
},
|
||||
{
|
||||
{"sql_inheritance", PGC_USERSET, COMPAT_OPTIONS_PREVIOUS,
|
||||
gettext_noop("Causes subtables to be included by default in various commands."),
|
||||
NULL
|
||||
},
|
||||
&SQL_inheritance,
|
||||
true,
|
||||
NULL, NULL, NULL
|
||||
},
|
||||
{
|
||||
{"transform_null_equals", PGC_USERSET, COMPAT_OPTIONS_CLIENT,
|
||||
gettext_noop("Treats \"expr=NULL\" as \"expr IS NULL\"."),
|
||||
|
Reference in New Issue
Block a user