forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commita62a359
committed
Fix Assert failure in ExpandColumnRefStar --- what I thought was a can't
happen condition can happen given incorrect input. The real problem is thatgram.y should try harder to distinguish * from "*" --- the latter is a legalcolumn name per spec, and someday we ought to treat it that way. Howeverfixing that is too invasive for a back-patch, and it's too late for the 8.3cycle too. So just reduce the Assert to a plain elog for now. Per reportfrom NikhilS.1 parent03a91e0 commita62a359
1 file changed
+6
-3
lines changedLines changed: 6 additions & 3 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 |
| |
| |||
826 | 826 |
| |
827 | 827 |
| |
828 | 828 |
| |
829 |
| - | |
| 829 | + | |
| 830 | + | |
| 831 | + | |
830 | 832 |
| |
831 |
| - | |
| 833 | + | |
| 834 | + | |
832 | 835 |
| |
833 | 836 |
| |
834 | 837 |
| |
|
0 commit comments
Comments
(0)