Skip to content

Commit c64d73f

Browse files
committed
update sql
1 parent 5824e33 commit c64d73f

File tree

1 file changed

+3
-3
lines changed
  • tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_fillna

1 file changed

+3
-3
lines changed

tests/unit/core/compile/sqlglot/expressions/snapshots/test_generic_ops/test_fillna/out.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
WITH `bfcte_0` AS (
22
SELECT
3-
`int64_col` AS `bfcol_0`,
4-
`float64_col` AS `bfcol_1`
3+
`float64_col`,
4+
`int64_col`
55
FROM `bigframes-dev`.`sqlglot_test`.`scalar_types`
66
), `bfcte_1` AS (
77
SELECT
88
*,
9-
COALESCE(`bfcol_0`, `bfcol_1`) AS `bfcol_2`
9+
COALESCE(`int64_col`, `float64_col`) AS `bfcol_2`
1010
FROM `bfcte_0`
1111
)
1212
SELECT

0 commit comments

Comments
 (0)