We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecedbb1 commit e011dffCopy full SHA for e011dff
src/dialect/bigquery.rs
@@ -115,6 +115,11 @@ impl Dialect for BigQueryDialect {
115
true
116
}
117
118
+ // See <https://cloud.google.com/bigquery/docs/reference/standard-sql/query-syntax#group_by_clause>
119
+ fn supports_group_by_expr(&self) -> bool {
120
+ true
121
+ }
122
+
123
fn is_column_alias(&self, kw: &Keyword, _parser: &mut Parser) -> bool {
124
!RESERVED_FOR_COLUMN_ALIAS.contains(kw)
125
0 commit comments