Skip to content

Commit

Permalink
fix aggregations
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jhilgart committed May 13, 2024
1 parent 6e5fbd0 commit 9d920c5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions semantic_model_generator/sqlgen/generate_sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
)

_AGGREGATION_FUNCTIONS = [
"sum",
"avg",
"min",
"max",
"count",
"stdev",
"var",
"percentile_cont",
"sum(",
"avg(",
"min(",
"max(",
"count(",
"stdev()",
"var(",
"percentile_cont(",
]


Expand Down

0 comments on commit 9d920c5

Please sign in to comment.