]> granicus.if.org Git - postgresql/commit
Expose the "*VALUES*" alias that we generate for a stand-alone VALUES list.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 4 Jun 2011 19:48:41 +0000 (15:48 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 4 Jun 2011 19:48:41 +0000 (15:48 -0400)
commiteb6af646becfe94f38d08d4765d5faf9123944d0
treeb67c66b6af79d98c550d26b210ab6f4fd3d85e34
parentf0d72ef638899ea1042e895c0573ba1d4af4d942
Expose the "*VALUES*" alias that we generate for a stand-alone VALUES list.

We were trying to make that strictly an internal implementation detail,
but it turns out that it's exposed anyway when dumping a view defined
like
CREATE VIEW test_view AS VALUES (1), (2), (3) ORDER BY 1;
This comes out as
CREATE VIEW ... ORDER BY "*VALUES*".column1;
which fails to parse when reloading the dump.

Hacking ruleutils.c to suppress the column qualification looks like it'd
be a risky business, so instead promote the RTE alias to full-fledged
usability.

Per bug #6049 from Dylan Adams.  Back-patch to all supported branches.
src/backend/parser/analyze.c