diff options
author | Robert Haas <rhaas@postgresql.org> | 2016-12-23 07:35:01 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2016-12-23 07:35:01 -0500 |
commit | e13486eba05cc46951a34263d19b65d1eca0176b (patch) | |
tree | 5f1a87dbd28446b5c04b38e912998e75e9da2569 /src/include/nodes/primnodes.h | |
parent | 7819ba1ef6c5297b7e27878d2b3d30c5bcef8939 (diff) | |
download | postgresql-e13486eba05cc46951a34263d19b65d1eca0176b.tar.gz postgresql-e13486eba05cc46951a34263d19b65d1eca0176b.zip |
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
Diffstat (limited to 'src/include/nodes/primnodes.h')
-rw-r--r-- | src/include/nodes/primnodes.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/nodes/primnodes.h b/src/include/nodes/primnodes.h index 65510b010ba..d11f1120b0a 100644 --- a/src/include/nodes/primnodes.h +++ b/src/include/nodes/primnodes.h @@ -45,8 +45,7 @@ typedef struct Alias typedef enum InhOption { INH_NO, /* Do NOT scan child tables */ - INH_YES, /* DO scan child tables */ - INH_DEFAULT /* Use current SQL_inheritance option */ + INH_YES /* DO scan child tables */ } InhOption; /* What to do at commit time for temporary relations */ |