Commit dddb2ce
committed
fix(parser): gate EXCLUDE by PG dialect; parse OPERATOR() and element ordering
Three related fixes to the `EXCLUDE` table-constraint arm:
- Guard the match on `PostgreSqlDialect | GenericDialect` so MySQL,
SQLite, and others can continue to use `exclude` as a column name.
Previously the arm fired on any dialect and hard-errored once the
expected continuation was missing, instead of falling through to
`parse_column_def`.
- Extend `parse_exclusion_element` to parse the optional `opclass`,
`ASC`/`DESC`, and `NULLS FIRST`/`LAST` qualifiers that precede
`WITH <op>`, matching the PG `index_elem` grammar.
- Add `parse_exclusion_operator` so the schema-qualified
`OPERATOR(schema.op)` form is consumed as one unit. The previous
single-token lookahead silently stopped at `OPERATOR` and left the
parenthesised path to corrupt the surrounding parse.1 parent a189d8f commit dddb2ce
1 file changed
Lines changed: 49 additions & 11 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9915 | 9915 | | |
9916 | 9916 | | |
9917 | 9917 | | |
9918 | | - | |
| 9918 | + | |
| 9919 | + | |
| 9920 | + | |
| 9921 | + | |
9919 | 9922 | | |
9920 | 9923 | | |
9921 | 9924 | | |
9922 | 9925 | | |
9923 | 9926 | | |
9924 | 9927 | | |
9925 | 9928 | | |
9926 | | - | |
9927 | | - | |
| 9929 | + | |
9928 | 9930 | | |
9929 | 9931 | | |
9930 | 9932 | | |
| |||
9972 | 9974 | | |
9973 | 9975 | | |
9974 | 9976 | | |
| 9977 | + | |
| 9978 | + | |
| 9979 | + | |
| 9980 | + | |
| 9981 | + | |
| 9982 | + | |
| 9983 | + | |
| 9984 | + | |
| 9985 | + | |
| 9986 | + | |
| 9987 | + | |
| 9988 | + | |
9975 | 9989 | | |
| 9990 | + | |
| 9991 | + | |
| 9992 | + | |
| 9993 | + | |
| 9994 | + | |
| 9995 | + | |
| 9996 | + | |
| 9997 | + | |
| 9998 | + | |
| 9999 | + | |
| 10000 | + | |
| 10001 | + | |
| 10002 | + | |
| 10003 | + | |
| 10004 | + | |
| 10005 | + | |
| 10006 | + | |
| 10007 | + | |
| 10008 | + | |
| 10009 | + | |
| 10010 | + | |
| 10011 | + | |
| 10012 | + | |
| 10013 | + | |
| 10014 | + | |
| 10015 | + | |
| 10016 | + | |
| 10017 | + | |
| 10018 | + | |
9976 | 10019 | | |
9977 | 10020 | | |
9978 | | - | |
9979 | | - | |
9980 | | - | |
9981 | | - | |
9982 | | - | |
| 10021 | + | |
| 10022 | + | |
9983 | 10023 | | |
9984 | | - | |
| 10024 | + | |
9985 | 10025 | | |
9986 | | - | |
9987 | | - | |
9988 | 10026 | | |
9989 | 10027 | | |
9990 | 10028 | | |
| |||
0 commit comments