File tree Expand file tree Collapse file tree 3 files changed +2
-4
lines changed
Expand file tree Collapse file tree 3 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,6 @@ impl Dialect for DatabricksDialect {
9292
9393 /// See <https://docs.databricks.com/en/sql/language-manual/sql-ref-syntax-qry-select-groupby.html>
9494 fn supports_group_by_with_modifier ( & self ) -> bool {
95- true
95+ true
9696 }
97-
9897}
Original file line number Diff line number Diff line change 153153// Splitting complex nodes (expressions, statements, types) into separate types
154154// would bloat the API and hide intent. Extra memory is a worthwhile tradeoff.
155155#![ allow( clippy:: large_enum_variant) ]
156- // TODO: Fix and remove this.
157- #![ expect( clippy:: unnecessary_unwrap) ]
158156
159157// Allow proc-macros to find this crate
160158extern crate self as sqlparser;
Original file line number Diff line number Diff line change @@ -15213,6 +15213,7 @@ fn ast_with_pass_through_query() {
1521315213 from.relation = TableFactor::PassThroughQuery {
1521415214 query: "SELECT * FROM tx".to_string(),
1521515215 alias: Some(TableAlias {
15216+ explicit: false,
1521615217 name: Ident::new("ty"),
1521715218 columns: vec![],
1521815219 }),
You can’t perform that action at this time.
0 commit comments