]> granicus.if.org Git - postgresql/commit
Transform ALTER TABLE/SET TYPE/USING expr during parse analysis
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Fri, 3 Apr 2015 20:33:05 +0000 (17:33 -0300)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Fri, 3 Apr 2015 20:33:05 +0000 (17:33 -0300)
commit9550e8348b7965715789089555bb5a3fda8c269c
tree97ae0663caae7308e8f7f87f5647783ac2387647
parent4ff695b17d32a9c330952192dbc789d31a5e2f5e
Transform ALTER TABLE/SET TYPE/USING expr during parse analysis

This lets later stages have access to the transformed expression; in
particular it allows DDL-deparsing code during event triggers to pass
the transformed expression to ruleutils.c, so that the complete command
can be deparsed.

This shuffles the timing of the transform calls a bit: previously,
nothing was transformed during parse analysis, and only the
RELKIND_RELATION case was being handled during execution.  After this
patch, all expressions are transformed during parse analysis (including
those for relkinds other than RELATION), and the error for other
relation kinds is thrown only during execution.  So we do more work than
before to reject some bogus cases.  That seems acceptable.
src/backend/commands/tablecmds.c
src/backend/parser/parse_utilcmd.c