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 0249a0c commit b8a9293Copy full SHA for b8a9293
tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_mean/out.sql
@@ -15,8 +15,8 @@ WITH `bfcte_0` AS (
15
SELECT
16
AVG(`bfcol_6`) AS `bfcol_12`,
17
AVG(CAST(`bfcol_7` AS INT64)) AS `bfcol_13`,
18
- FLOOR(AVG(`bfcol_8`)) AS `bfcol_14`,
19
- FLOOR(AVG(`bfcol_6`)) AS `bfcol_15`
+ CAST(FLOOR(AVG(`bfcol_8`)) AS INT64) AS `bfcol_14`,
+ CAST(FLOOR(AVG(`bfcol_6`)) AS INT64) AS `bfcol_15`
20
FROM `bfcte_1`
21
)
22
0 commit comments