forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commita914377
committed
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 definedlikeCREATE VIEW test_view AS VALUES (1), (2), (3) ORDER BY 1;This comes out asCREATE VIEW ... ORDER BY "*VALUES*".column1;which fails to parse when reloading the dump.Hacking ruleutils.c to suppress the column qualification looks like it'dbe a risky business, so instead promote the RTE alias to full-fledgedusability.Per bug #6049 from Dylan Adams. Back-patch to all supported branches.1 parent0484175 commita914377
1 file changed
+2
-1
lines changedLines changed: 2 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
999 | 999 |
| |
1000 | 1000 |
| |
1001 | 1001 |
| |
1002 |
| - | |
| 1002 | + | |
1003 | 1003 |
| |
1004 | 1004 |
| |
1005 | 1005 |
| |
| |||
1162 | 1162 |
| |
1163 | 1163 |
| |
1164 | 1164 |
| |
| 1165 | + | |
1165 | 1166 |
| |
1166 | 1167 |
| |
1167 | 1168 |
| |
|
0 commit comments
Comments
(0)