Skip to content

Commit

Permalink
Fix Snowflake tests - private access error (#11950)
Browse files Browse the repository at this point in the history
Snowflake tests are still failing on develop branch. This time due to a `Private_Access` error. Attempting to fix that to make the tests on develop green.
  • Loading branch information
radeusgd authored Dec 30, 2024
1 parent 61fa400 commit 6e5d902
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ type Snowflake_Dialect
Add an extra cast to adjust the output type of aggregate operations.
Some DBs do CAST(SUM(x) AS FLOAT) others do SUM(CAST(x AS FLOAT)).
cast_aggregate_columns self op_kind:Text columns:(Vector Internal_Column) =
self.cast_op_type op_kind columns (SQL_Expression.Operation op_kind (columns.map c->c.expression))
self.cast_op_type op_kind columns (SQL_Expression.Operation op_kind (columns.map Internals_Access.column_expression))

## PRIVATE
prepare_fetch_types_query : SQL_Expression -> Context -> SQL_Statement
Expand Down

0 comments on commit 6e5d902

Please sign in to comment.