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
The recent PR for postgres support has led to postgres specific parsing and writing code creeping into the base sqlparser module. We need to move the postgres specific code into the postgres dialect module.
The text was updated successfully, but these errors were encountered:
Hey @andygrove, until #7 is resolved would you be OK with accepting additional dialect-specific code in the generic parser? I'm asking because @benesch has just submitted a PR to support CREATE MATERIALIZED VIEW (nickolay#1) against my fork of sqlparser-rs. Since I intend to get my fork merged into the mainline, I thought I'd ask now rather than later...
serprex
added a commit
to serprex/sqlparser-rs
that referenced
this issue
Nov 6, 2023
Implements parsing for `SELECT * ILIKE ...` which is valid syntax in
snowflake: https://docs.snowflake.com/en/sql-reference/sql/select
Via googling, it seems like only snowflake supports this syntax. I could
not find any other dialect that does. Snowflake does not allow `SELECT *
ILIKE <pattern> EXCLUDE <column>` so I implemented that as well.
jmhain
added a commit
to jmhain/sqlparser-rs
that referenced
this issue
Jul 14, 2024
The recent PR for postgres support has led to postgres specific parsing and writing code creeping into the base sqlparser module. We need to move the postgres specific code into the postgres dialect module.
The text was updated successfully, but these errors were encountered: