Skip to content

Commit b8a9293

Browse files
committed
update out.sql
1 parent 0249a0c commit b8a9293

File tree

1 file changed

+2
-2
lines changed
  • tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_mean

1 file changed

+2
-2
lines changed

tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_mean/out.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ WITH `bfcte_0` AS (
1515
SELECT
1616
AVG(`bfcol_6`) AS `bfcol_12`,
1717
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`
18+
CAST(FLOOR(AVG(`bfcol_8`)) AS INT64) AS `bfcol_14`,
19+
CAST(FLOOR(AVG(`bfcol_6`)) AS INT64) AS `bfcol_15`
2020
FROM `bfcte_1`
2121
)
2222
SELECT

0 commit comments

Comments
 (0)