Skip to content

Commit abc6dae

Browse files
committed
revert change to tests/unit/core/compile/sqlglot/expressions/snapshots/test_binary_compiler/test_add_numeric/out.sql
1 parent 123a50e commit abc6dae

File tree

1 file changed

+9
-35
lines changed
  • tests/unit/core/compile/sqlglot/expressions/snapshots/test_binary_compiler/test_add_numeric

1 file changed

+9
-35
lines changed
Lines changed: 9 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,16 @@
1-
WITH `bfcte_1` AS (
1+
WITH `bfcte_0` AS (
22
SELECT
3-
`rowindex` AS `bfcol_0`
3+
`int64_col` AS `bfcol_0`,
4+
`rowindex` AS `bfcol_1`
45
FROM `bigframes-dev`.`sqlglot_test`.`scalar_types`
5-
), `bfcte_4` AS (
6-
SELECT
7-
`bfcol_0` AS `bfcol_1`
8-
FROM `bfcte_1`
9-
), `bfcte_0` AS (
10-
SELECT
11-
`int64_col` AS `bfcol_2`,
12-
`rowindex` AS `bfcol_3`
13-
FROM `bigframes-dev`.`sqlglot_test`.`scalar_types`
14-
), `bfcte_2` AS (
6+
), `bfcte_1` AS (
157
SELECT
168
*,
17-
`bfcol_3` AS `bfcol_6`,
18-
`bfcol_2` AS `bfcol_7`,
19-
`bfcol_2` AS `bfcol_8`
9+
`bfcol_1` AS `bfcol_4`,
10+
`bfcol_0` + `bfcol_0` AS `bfcol_5`
2011
FROM `bfcte_0`
21-
), `bfcte_3` AS (
22-
SELECT
23-
*,
24-
`bfcol_7` + `bfcol_8` AS `bfcol_12`
25-
FROM `bfcte_2`
26-
), `bfcte_5` AS (
27-
SELECT
28-
`bfcol_6` AS `bfcol_13`,
29-
`bfcol_12` AS `bfcol_14`
30-
FROM `bfcte_3`
31-
), `bfcte_6` AS (
32-
SELECT
33-
*
34-
FROM `bfcte_4`
35-
LEFT JOIN `bfcte_5`
36-
ON COALESCE(`bfcol_1`, 0) = COALESCE(`bfcol_13`, 0)
37-
AND COALESCE(`bfcol_1`, 1) = COALESCE(`bfcol_13`, 1)
3812
)
3913
SELECT
40-
`bfcol_1` AS `rowindex`,
41-
`bfcol_14` AS `int64_col`
42-
FROM `bfcte_6`
14+
`bfcol_4` AS `rowindex`,
15+
`bfcol_5` AS `int64_col`
16+
FROM `bfcte_1`

0 commit comments

Comments
 (0)