]> granicus.if.org Git - postgresql/commit
Replace enum InhOption with simple boolean.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 23 Dec 2016 18:35:11 +0000 (13:35 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 23 Dec 2016 18:35:18 +0000 (13:35 -0500)
commitfe591f8bf68db9bf81f278acce6239ee68cd4ed6
treeec92055ef668f9261ad787c9e75e9992335d41d1
parent158df30359025d74daee74a3b927fd07c3b1a413
Replace enum InhOption with simple boolean.

Now that it has only INH_NO and INH_YES values, it's just weird that
it's not a plain bool, so make it that way.

Also rename RangeVar.inhOpt to "inh", to be like RangeTblEntry.inh.
My recollection is that we gave it a different name specifically because
it had a different representation than the derived bool value, but it
no longer does.  And this is a good forcing function to be sure we
catch any places that are affected by the change.

Bump catversion because of possible effect on stored RangeVar nodes.
I'm not exactly convinced that we ever store RangeVar on disk, but
we have a readfuncs function for it, so be cautious.  (If we do do so,
then commit e13486eba was in error not to bump catversion.)

Follow-on to commit e13486eba.

Discussion: http://postgr.es/m/CA+TgmoYe+EG7LdYX6pkcNxr4ygkP4+A=jm9o-CPXyOvRiCNwaQ@mail.gmail.com
12 files changed:
src/backend/commands/lockcmds.c
src/backend/commands/tablecmds.c
src/backend/nodes/copyfuncs.c
src/backend/nodes/equalfuncs.c
src/backend/nodes/makefuncs.c
src/backend/nodes/outfuncs.c
src/backend/nodes/readfuncs.c
src/backend/parser/analyze.c
src/backend/parser/gram.y
src/backend/parser/parse_clause.c
src/include/catalog/catversion.h
src/include/nodes/primnodes.h