forked from apache/datafusion-sqlparser-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabricks.rs
35 lines (30 loc) · 1.23 KB
/
databricks.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
use crate::dialect::{Dialect, DialectFlags};
/// A [`Dialect`] for [Databricks SQL](https://www.databricks.com/)
///
/// See <https://docs.databricks.com/en/sql/language-manual/index.html>.
#[derive(Debug, Default)]
pub struct DatabricksDialect;
/// see <https://docs.databricks.com/en/sql/language-manual/sql-ref-identifiers.html>
impl Dialect for DatabricksDialect {
fn flags(&self) -> DialectFlags {
DialectFlags {
supports_filter_during_aggregation: true,
// https://docs.databricks.com/en/sql/language-manual/sql-ref-syntax-qry-select-groupby.html
supports_group_by_expr: true,
supports_lambda_functions: true,
// https://docs.databricks.com/en/sql/language-manual/sql-ref-syntax-qry-select.html#syntax
supports_select_wildcard_except: true,
require_interval_qualifier: true,
..Default::default()
}
}
fn is_delimited_identifier_start(&self, ch: char) -> bool {
matches!(ch, '`')
}
fn is_identifier_start(&self, ch: char) -> bool {
matches!(ch, 'a'..='z' | 'A'..='Z' | '_')
}
fn is_identifier_part(&self, ch: char) -> bool {
matches!(ch, 'a'..='z' | 'A'..='Z' | '0'..='9' | '_')
}
}