File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1212
1313mod ansi;
1414mod bigquery;
15- mod databricks;
1615mod generic;
1716pub mod keywords;
1817mod mssql;
@@ -26,7 +25,6 @@ use std::fmt::Debug;
2625
2726pub use self :: ansi:: AnsiDialect ;
2827pub use self :: bigquery:: BigQueryDialect ;
29- pub use self :: databricks:: DatabricksDialect ;
3028pub use self :: generic:: GenericDialect ;
3129pub use self :: mssql:: MsSqlDialect ;
3230pub use self :: mysql:: MySqlDialect ;
Original file line number Diff line number Diff line change @@ -2072,10 +2072,7 @@ impl<'a> Parser<'a> {
20722072 // ignore the <separator> and treat the multiple strings as
20732073 // a single <literal>."
20742074 Token :: SingleQuotedString ( s) => Ok ( Some ( Ident :: with_quote ( '\'' , s) ) ) ,
2075- Token :: BacktickQuotedString ( s)
2076- if dialect_of ! ( self is BigQueryDialect )
2077- || dialect_of ! ( self is DatabricksDialect ) =>
2078- {
2075+ Token :: BacktickQuotedString ( s) if dialect_of ! ( self is BigQueryDialect ) => {
20792076 Ok ( Some ( Ident :: with_quote ( '`' , s) ) )
20802077 }
20812078 not_an_ident => {
You can’t perform that action at this time.
0 commit comments