postgresql/src
Tom Lane a914377495 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.
2011-06-04 15:48:17 -04:00
..
backend Expose the "*VALUES*" alias that we generate for a stand-alone VALUES list. 2011-06-04 15:48:17 -04:00
bin Further improvements in pg_ctl's new wait-for-postmaster-start logic. 2011-06-01 13:09:07 -04:00
include Fix failure to check whether a rowtype's component types are sortable. 2011-06-03 15:39:17 -04:00
interfaces Need to list getpeereid.c in .gitignore, too ... 2011-06-02 22:24:08 -04:00
makefiles Rewrite installation makefile rules without for loops 2011-05-02 01:05:08 +03:00
pl Remove usage of &PL_sv_undef in hashes and arrays 2011-05-30 12:42:48 -04:00
port Typo fix. 2011-06-02 13:37:19 -04:00
template
test Fix failure to check whether a rowtype's component types are sortable. 2011-06-03 15:39:17 -04:00
timezone Split PGC_S_DEFAULT into two values, for true boot_val vs computed default. 2011-05-11 19:57:38 -04:00
tools Convert builddoc.bat into a perl script that actually works. 2011-05-25 00:21:07 -04:00
tutorial
.gitignore
bcc32.mak
DEVELOPERS
Makefile Fix some oversights in distprep and maintainer-clean targets. 2011-03-10 00:04:05 -05:00
Makefile.global.in Rename pg_regress option --multibyte to --encoding 2011-04-15 08:42:05 +03:00
Makefile.shlib
nls-global.mk
win32.mak