There was an error while loading. Please reload this page.
1 parent 5824e33 commit c64d73fCopy full SHA for c64d73f
1 file changed
tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_fillna/out.sql
@@ -1,12 +1,12 @@
1
WITH `bfcte_0` AS (
2
SELECT
3
- `int64_col` AS `bfcol_0`,
4
- `float64_col` AS `bfcol_1`
+ `float64_col`,
+ `int64_col`
5
FROM `bigframes-dev`.`sqlglot_test`.`scalar_types`
6
), `bfcte_1` AS (
7
8
*,
9
- COALESCE(`bfcol_0`, `bfcol_1`) AS `bfcol_2`
+ COALESCE(`int64_col`, `float64_col`) AS `bfcol_2`
10
FROM `bfcte_0`
11
)
12
0 commit comments