You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: change token consumption to pick to test on EOF in parser
If we use `next_token(...)` then in the case of multi-statement query
it consumes a semicolon token which leads to the parse error on the
correct queries like:
```sql
CREATE EXTERNAL TABLE t1 ...;
CREATE EXTERNAL TABLE t2 ...;
```
0 commit comments