mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-02 13:12:16 +00:00
Add fn support_group_by_expr to Dialect trait (#896)
This commit is contained in:
parent
2b37e4ae6e
commit
2296de2bc4
5 changed files with 17 additions and 1 deletions
|
@ -42,6 +42,10 @@ impl Dialect for PostgreSqlDialect {
|
|||
fn supports_filter_during_aggregation(&self) -> bool {
|
||||
true
|
||||
}
|
||||
|
||||
fn supports_group_by_expr(&self) -> bool {
|
||||
true
|
||||
}
|
||||
}
|
||||
|
||||
pub fn parse_comment(parser: &mut Parser) -> Result<Statement, ParserError> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue