- Notifications
You must be signed in to change notification settings - Fork5
Commit751a14e
committed
Repair longstanding violation of SQL92 semantics: GROUP BY would
interpret a column name as an output column alias (targetlist AS name),ather than a real column name as it ought to. According to the spec,only ORDER BY should look at output column names. I left in GROUP BY'swillingness to use an output column number ('GROUP BY 2'), even thoughthis is also contrary to the spec --- again, only ORDER BY is supposedto accept that. But there is no possible reason to want to GROUP BYan integer constant, so keeping this old behavior won't break anySQL-compliant queries. DISTINCT ON will behave the same as GROUP BY.Change numerology regress test, which depended on the incorrectbehavior.1 parentb48f983 commit751a14e
File tree
3 files changed
+40
-26
lines changed- src
- backend/parser
- test/regress
- expected
- sql
3 files changed
+40
-26
lines changedLines changed: 17 additions & 8 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
8 | 8 |
| |
9 | 9 |
| |
10 | 10 |
| |
11 |
| - | |
| 11 | + | |
12 | 12 |
| |
13 | 13 |
| |
14 | 14 |
| |
| |||
721 | 721 |
| |
722 | 722 |
| |
723 | 723 |
| |
724 |
| - | |
| 724 | + | |
725 | 725 |
| |
726 | 726 |
| |
727 | 727 |
| |
| |||
733 | 733 |
| |
734 | 734 |
| |
735 | 735 |
| |
736 |
| - | |
| 736 | + | |
737 | 737 |
| |
738 | 738 |
| |
739 | 739 |
| |
740 | 740 |
| |
741 | 741 |
| |
742 | 742 |
| |
743 | 743 |
| |
| 744 | + | |
| 745 | + | |
| 746 | + | |
| 747 | + | |
| 748 | + | |
744 | 749 |
| |
745 |
| - | |
| 750 | + | |
746 | 751 |
| |
747 |
| - | |
748 |
| - | |
749 |
| - | |
| 752 | + | |
| 753 | + | |
| 754 | + | |
| 755 | + | |
| 756 | + | |
| 757 | + | |
750 | 758 |
| |
751 | 759 |
| |
752 | 760 |
| |
753 | 761 |
| |
754 |
| - | |
| 762 | + | |
| 763 | + | |
755 | 764 |
| |
756 | 765 |
| |
757 | 766 |
| |
|
Lines changed: 14 additions & 14 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
88 | 88 |
| |
89 | 89 |
| |
90 | 90 |
| |
91 |
| - | |
| 91 | + | |
92 | 92 |
| |
93 | 93 |
| |
94 | 94 |
| |
95 | 95 |
| |
96 | 96 |
| |
97 | 97 |
| |
98 | 98 |
| |
| 99 | + | |
| 100 | + | |
| 101 | + | |
99 | 102 |
| |
100 | 103 |
| |
101 | 104 |
| |
102 | 105 |
| |
103 |
| - | |
104 |
| - | |
105 |
| - | |
106 |
| - | |
107 |
| - | |
108 |
| - | |
| 106 | + | |
109 | 107 |
| |
110 | 108 |
| |
111 |
| - | |
| 109 | + | |
112 | 110 |
| |
113 | 111 |
| |
114 | 112 |
| |
115 | 113 |
| |
116 | 114 |
| |
117 | 115 |
| |
118 | 116 |
| |
119 |
| - | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
120 | 120 |
| |
121 |
| - | |
| 121 | + | |
122 | 122 |
| |
123 |
| - | |
124 |
| - | |
125 |
| - | |
126 |
| - | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
127 | 127 |
| |
128 | 128 |
| |
129 | 129 |
| |
|
Lines changed: 9 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
67 | 67 |
| |
68 | 68 |
| |
69 | 69 |
| |
70 |
| - | |
| 70 | + | |
71 | 71 |
| |
72 | 72 |
| |
| 73 | + | |
| 74 | + | |
| 75 | + | |
73 | 76 |
| |
74 | 77 |
| |
75 | 78 |
| |
76 | 79 |
| |
77 | 80 |
| |
78 | 81 |
| |
79 | 82 |
| |
80 |
| - | |
| 83 | + | |
81 | 84 |
| |
82 | 85 |
| |
83 |
| - | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
84 | 89 |
| |
85 |
| - | |
| 90 | + | |
86 | 91 |
| |
87 | 92 |
| |
88 | 93 |
| |
|
0 commit comments
Comments
(0)