forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commita4c35ea
committed
Improve parser's and planner's handling of set-returning functions.
Teach the parser to reject misplaced set-returning functions during parseanalysis using p_expr_kind, in much the same way as we do for aggregatesand window functions (cf commiteaccfde). While this isn't complete(it misses nesting-based restrictions), it's much better than the previouserror reporting for such cases, and it allows elimination of assortedad-hoc expression_returns_set() error checks. We could add nesting checkslater if it seems important to catch all cases at parse time.There is one case the parser will now throw error for although previousversions allowed it, which is SRFs in the tlist of an UPDATE. That neverbehaved sensibly (since it's ill-defined which generated row should beused to perform the update) and it's hard to see why it should not betreated as an error. It's a release-note-worthy change though.Also, add a new Query field hasTargetSRFs reporting whether there areany SRFs in the targetlist (including GROUP BY/ORDER BY expressions).The parser can now set that basically for free during parse analysis,and we can use it in a number of places to avoid expression_returns_setsearches. (There will be more such checks soon.) In some places, thisallows decontorting the logic since it's no longer expensive to check forSRFs in the tlist --- so I made the checks parallel to the handling ofhasAggs/hasWindowFuncs wherever it seemed appropriate.catversion bump because adding a Query field changes stored rules.Andres Freund and Tom LaneDiscussion: <24639.1473782855@sss.pgh.pa.us>1 parent445a38a commita4c35ea
File tree
23 files changed
+225
-73
lines changed- src
- backend
- catalog
- nodes
- optimizer
- path
- plan
- prep
- util
- parser
- rewrite
- include
- catalog
- nodes
- parser
- pl/plpgsql/src
- test/regress
- expected
- sql
23 files changed
+225
-73
lines changedLines changed: 2 additions & 7 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2560 | 2560 |
| |
2561 | 2561 |
| |
2562 | 2562 |
| |
2563 |
| - | |
2564 |
| - | |
2565 |
| - | |
| 2563 | + | |
| 2564 | + | |
2566 | 2565 |
| |
2567 |
| - | |
2568 |
| - | |
2569 |
| - | |
2570 |
| - | |
2571 | 2566 |
| |
2572 | 2567 |
| |
2573 | 2568 |
| |
|
Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2731 | 2731 |
| |
2732 | 2732 |
| |
2733 | 2733 |
| |
| 2734 | + | |
2734 | 2735 |
| |
2735 | 2736 |
| |
2736 | 2737 |
| |
|
Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
921 | 921 |
| |
922 | 922 |
| |
923 | 923 |
| |
| 924 | + | |
924 | 925 |
| |
925 | 926 |
| |
926 | 927 |
| |
|
Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2683 | 2683 |
| |
2684 | 2684 |
| |
2685 | 2685 |
| |
| 2686 | + | |
2686 | 2687 |
| |
2687 | 2688 |
| |
2688 | 2689 |
| |
|
Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
238 | 238 |
| |
239 | 239 |
| |
240 | 240 |
| |
| 241 | + | |
241 | 242 |
| |
242 | 243 |
| |
243 | 244 |
| |
|
Lines changed: 4 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2422 | 2422 |
| |
2423 | 2423 |
| |
2424 | 2424 |
| |
2425 |
| - | |
| 2425 | + | |
| 2426 | + | |
2426 | 2427 |
| |
2427 | 2428 |
| |
2428 | 2429 |
| |
| |||
2835 | 2836 |
| |
2836 | 2837 |
| |
2837 | 2838 |
| |
2838 |
| - | |
| 2839 | + | |
| 2840 | + | |
2839 | 2841 |
| |
2840 | 2842 |
| |
2841 | 2843 |
| |
|
Lines changed: 6 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
650 | 650 |
| |
651 | 651 |
| |
652 | 652 |
| |
| 653 | + | |
| 654 | + | |
| 655 | + | |
| 656 | + | |
| 657 | + | |
653 | 658 |
| |
654 | 659 |
| |
655 | 660 |
| |
| |||
695 | 700 |
| |
696 | 701 |
| |
697 | 702 |
| |
698 |
| - | |
| 703 | + | |
699 | 704 |
| |
700 | 705 |
| |
701 | 706 |
| |
|
Lines changed: 14 additions & 6 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
604 | 604 |
| |
605 | 605 |
| |
606 | 606 |
| |
| 607 | + | |
| 608 | + | |
| 609 | + | |
| 610 | + | |
607 | 611 |
| |
608 | 612 |
| |
609 | 613 |
| |
| |||
1702 | 1706 |
| |
1703 | 1707 |
| |
1704 | 1708 |
| |
1705 |
| - | |
1706 |
| - | |
1707 |
| - | |
1708 |
| - | |
| 1709 | + | |
1709 | 1710 |
| |
1710 | 1711 |
| |
1711 | 1712 |
| |
1712 | 1713 |
| |
1713 | 1714 |
| |
1714 | 1715 |
| |
| 1716 | + | |
1715 | 1717 |
| |
1716 | 1718 |
| |
1717 | 1719 |
| |
| |||
1928 | 1930 |
| |
1929 | 1931 |
| |
1930 | 1932 |
| |
1931 |
| - | |
| 1933 | + | |
| 1934 | + | |
| 1935 | + | |
| 1936 | + | |
| 1937 | + | |
1932 | 1938 |
| |
1933 | 1939 |
| |
1934 | 1940 |
| |
| |||
4995 | 5001 |
| |
4996 | 5002 |
| |
4997 | 5003 |
| |
4998 |
| - | |
| 5004 | + | |
| 5005 | + | |
4999 | 5006 |
| |
5000 | 5007 |
| |
5001 | 5008 |
| |
| |||
5034 | 5041 |
| |
5035 | 5042 |
| |
5036 | 5043 |
| |
| 5044 | + | |
5037 | 5045 |
| |
5038 | 5046 |
| |
5039 | 5047 |
| |
|
Lines changed: 2 additions & 8 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1562 | 1562 |
| |
1563 | 1563 |
| |
1564 | 1564 |
| |
1565 |
| - | |
| 1565 | + | |
1566 | 1566 |
| |
1567 | 1567 |
| |
1568 | 1568 |
| |
| |||
1573 | 1573 |
| |
1574 | 1574 |
| |
1575 | 1575 |
| |
| 1576 | + | |
1576 | 1577 |
| |
1577 | 1578 |
| |
1578 | 1579 |
| |
| |||
1613 | 1614 |
| |
1614 | 1615 |
| |
1615 | 1616 |
| |
1616 |
| - | |
1617 |
| - | |
1618 |
| - | |
1619 |
| - | |
1620 |
| - | |
1621 |
| - | |
1622 |
| - | |
1623 | 1617 |
| |
1624 | 1618 |
| |
1625 | 1619 |
| |
|
Lines changed: 5 additions & 13 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1188 | 1188 |
| |
1189 | 1189 |
| |
1190 | 1190 |
| |
1191 |
| - | |
1192 |
| - | |
| 1191 | + | |
| 1192 | + | |
1193 | 1193 |
| |
1194 | 1194 |
| |
1195 | 1195 |
| |
| |||
1419 | 1419 |
| |
1420 | 1420 |
| |
1421 | 1421 |
| |
1422 |
| - | |
1423 |
| - | |
| 1422 | + | |
| 1423 | + | |
1424 | 1424 |
| |
1425 | 1425 |
| |
1426 | 1426 |
| |
| |||
1430 | 1430 |
| |
1431 | 1431 |
| |
1432 | 1432 |
| |
| 1433 | + | |
1433 | 1434 |
| |
1434 | 1435 |
| |
1435 | 1436 |
| |
| |||
1542 | 1543 |
| |
1543 | 1544 |
| |
1544 | 1545 |
| |
1545 |
| - | |
1546 |
| - | |
1547 |
| - | |
1548 |
| - | |
1549 |
| - | |
1550 |
| - | |
1551 |
| - | |
1552 |
| - | |
1553 |
| - | |
1554 | 1546 |
| |
1555 | 1547 |
| |
1556 | 1548 |
| |
|
Lines changed: 7 additions & 10 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
4449 | 4449 |
| |
4450 | 4450 |
| |
4451 | 4451 |
| |
| 4452 | + | |
4452 | 4453 |
| |
4453 | 4454 |
| |
4454 | 4455 |
| |
| |||
4489 | 4490 |
| |
4490 | 4491 |
| |
4491 | 4492 |
| |
4492 |
| - | |
4493 |
| - | |
4494 |
| - | |
4495 |
| - | |
4496 |
| - | |
4497 |
| - | |
4498 |
| - | |
| 4493 | + | |
| 4494 | + | |
| 4495 | + | |
| 4496 | + | |
| 4497 | + | |
| 4498 | + | |
4499 | 4499 |
| |
4500 |
| - | |
4501 |
| - | |
4502 |
| - | |
4503 | 4500 |
| |
4504 | 4501 |
| |
4505 | 4502 |
| |
|
Lines changed: 6 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
417 | 417 |
| |
418 | 418 |
| |
419 | 419 |
| |
| 420 | + | |
420 | 421 |
| |
421 | 422 |
| |
422 | 423 |
| |
| |||
819 | 820 |
| |
820 | 821 |
| |
821 | 822 |
| |
| 823 | + | |
822 | 824 |
| |
823 | 825 |
| |
824 | 826 |
| |
| |||
1231 | 1233 |
| |
1232 | 1234 |
| |
1233 | 1235 |
| |
| 1236 | + | |
1234 | 1237 |
| |
1235 | 1238 |
| |
1236 | 1239 |
| |
| |||
1691 | 1694 |
| |
1692 | 1695 |
| |
1693 | 1696 |
| |
| 1697 | + | |
1694 | 1698 |
| |
1695 | 1699 |
| |
1696 | 1700 |
| |
| |||
2170 | 2174 |
| |
2171 | 2175 |
| |
2172 | 2176 |
| |
| 2177 | + | |
2173 | 2178 |
| |
2174 | 2179 |
| |
2175 | 2180 |
| |
| |||
2565 | 2570 |
| |
2566 | 2571 |
| |
2567 | 2572 |
| |
2568 |
| - | |
| 2573 | + | |
2569 | 2574 |
| |
2570 | 2575 |
| |
2571 | 2576 |
| |
|
0 commit comments
Comments
(0)