mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-12-09 14:07:08 +00:00
* [postgres] Add support for custom binary operators More details about operators in general are at: https://www.postgresql.org/docs/current/sql-createoperator.html. This patch attempts to parse `SELECT` queries that reference an operator using `OPERATOR(<optional_schema>.<operator_name>)` syntax. This is a PostgreSQL extension. There are no provisions for user-defined operators in the SQL standard. * fix code-review comments and ci failures * Allow custom operator in generic dialects too * Parse `OPERATOR` as Vec<String> * fix: std Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org> |
||
|---|---|---|
| .. | ||
| queries/tpch | ||
| test_utils | ||
| sqlparser_bigquery.rs | ||
| sqlparser_common.rs | ||
| sqlparser_hive.rs | ||
| sqlparser_mssql.rs | ||
| sqlparser_mysql.rs | ||
| sqlparser_postgres.rs | ||
| sqlparser_redshift.rs | ||
| sqlparser_regression.rs | ||
| sqlparser_snowflake.rs | ||
| sqlparser_sqlite.rs | ||
| sqpparser_clickhouse.rs | ||