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
* Support identifiers beginning with digits in MySQL (#856)
* support COPY INTO in snowflake (#841)
Signed-off-by: Pawel Leszczynski <[email protected]>
* Add `dialect_from_str` and improve `Dialect` documentation (#848)
* Add `dialect_from_str` and improve `Dialect` documentation
* cleanup
* fix compilation with nostd
* Support multiple-table DELETE syntax (#855)
* Support `DISTINCT ON (...)` (#852)
* Support "DISTINCT ON (...)"
* a test
* fix the merge
* Test trailing commas (#859)
* test: add tests for trailing commas
* tweaks
* Add support for query source in COPY .. TO statement (#858)
* Add support for query source in COPY .. TO statement
* Fix compile error
* Fix logical merge conflict (#865)
* Fix tiny typo in custom_sql_parser.md (#864)
* Make Expr::Interval its own struct (#872)
* Make Expr::Interval its own struct
* Add test interval display
* Fix cargo fmt
* Include license file in published crate (#871)
* Add support for multiple expressions, order by in aggregations (#879)
* Add support for multiple expressions, order by in aggregations
* Fix formatting errors
* Resolve linter errors
* Add parse_multipart_identifier function to parser (#860)
* Add parse_multipart_identifier function to parser
* Update doc for parse_multipart_identifier
* Fix conflict
* feat: Add custom operator (#868)
* feat: Add custom operator
From #863
- It doesn't parse anything — I'm not sure how to parse ` SELECT 'a' REGEXP '^[a-d]';` with `REGEXP` as the operator... (but fine for my narrow purpose)
- If we need tests, where would I add them?
* Update src/ast/operator.rs
---------
Co-authored-by: Andrew Lamb <[email protected]>
* feat: Support MySQL's `DIV` operator (#876)
* feat: MySQL's DIV operator
* fix: do not use `_` prefix for used variable
---------
Co-authored-by: Andrew Lamb <[email protected]>
* truncate: table as optional keyword (#883)
Signed-off-by: Maciej Obuchowski <[email protected]>
* feat: add DuckDB dialect (#878)
* feat: add DuckDB dialect
* formatting
* fix conflict
* support // in GenericDialect
* add DucDbDialect to all_dialects
* add comment from suggestion
Co-authored-by: Andrew Lamb <[email protected]>
* fix: support // in GenericDialect
---------
Co-authored-by: Andrew Lamb <[email protected]>
* Add support for first, last aggregate function parsing (#882)
* Add order by parsing to functions
* Fix doc error
* minor changes
* Named window frames (#881)
* after over clause, named window can be parsed with window ... as after having clause
* Lint errors are fixed
* Support for multiple windows
* fix lint errors
* simplifications
* rename function
* Rewrite named window search in functional style
* Test added and some minor changes
* Minor changes on tests and namings, and semantic check is removed
---------
Co-authored-by: Mustafa Akur <[email protected]>
Co-authored-by: Mehmet Ozan Kabak <[email protected]>
* Fix merge conflict (#885)
* Update CHANGELOG for `0.34.0` release (#884)
* chore: Release sqlparser version 0.34.0
* Update criterion requirement from 0.4 to 0.5 in /sqlparser_bench (#890)
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---------
Signed-off-by: Pawel Leszczynski <[email protected]>
Signed-off-by: Maciej Obuchowski <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: AviRaboah <[email protected]>
Co-authored-by: pawel.leszczynski <[email protected]>
Co-authored-by: Andrew Lamb <[email protected]>
Co-authored-by: Aljaž Mur Eržen <[email protected]>
Co-authored-by: Armin Primadi <[email protected]>
Co-authored-by: Okue <[email protected]>
Co-authored-by: Andrew Kane <[email protected]>
Co-authored-by: Mustafa Akur <[email protected]>
Co-authored-by: Jeffrey <[email protected]>
Co-authored-by: Maximilian Roos <[email protected]>
Co-authored-by: eitsupi <[email protected]>
Co-authored-by: Maciej Obuchowski <[email protected]>
Co-authored-by: Berkay Şahin <[email protected]>
Co-authored-by: Mustafa Akur <[email protected]>
Co-authored-by: Mehmet Ozan Kabak <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Copy file name to clipboardExpand all lines: docs/custom_sql_parser.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -6,5 +6,5 @@ The concept is simply to write a new parser that delegates to the ANSI parser so
6
6
7
7
I also plan on building in specific support for custom data types, where a lambda function can be passed to the parser to parse data types.
8
8
9
-
For an example of this, see the [DataFusion](https://github.com/apache/arrow-datafusion) project and its [query planner](https://github.com/apache/arrow-datafusion/tree/master/datafusion/sql).
9
+
For an example of this, see the [DataFusion](https://github.com/apache/arrow-datafusion) project and its [query planner](https://github.com/apache/arrow-datafusion/tree/master/datafusion/sql).
0 commit comments