mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-24 16:04:04 +00:00
Enable GROUP BY exp for Snowflake dialect (#1683)
This commit is contained in:
parent
211b15e790
commit
cbe59a2d8b
1 changed files with 5 additions and 0 deletions
|
@ -305,6 +305,11 @@ impl Dialect for SnowflakeDialect {
|
||||||
fn supports_timestamp_versioning(&self) -> bool {
|
fn supports_timestamp_versioning(&self) -> bool {
|
||||||
true
|
true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// See: <https://docs.snowflake.com/en/sql-reference/constructs/group-by>
|
||||||
|
fn supports_group_by_expr(&self) -> bool {
|
||||||
|
true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn parse_file_staging_command(kw: Keyword, parser: &mut Parser) -> Result<Statement, ParserError> {
|
fn parse_file_staging_command(kw: Keyword, parser: &mut Parser) -> Result<Statement, ParserError> {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue