11WITH ` bfcte_0` AS (
22 SELECT
3+ ` bool_col` ,
34 ` float64_col` ,
45 ` int64_col`
56 FROM ` bigframes-dev` .` sqlglot_test` .` scalar_types`
67), ` bfcte_1` AS (
78 SELECT
89 * ,
9- COALESCE(` int64_col` IN (1 , 2 , 3 ), FALSE) AS ` bfcol_2` ,
10- (
11- ` int64_col` IS NULL
12- ) OR ` int64_col` IN (123456 ) AS ` bfcol_3` ,
13- COALESCE(` int64_col` IN (1 .0 , 2 .0 , 3 .0 ), FALSE) AS ` bfcol_4` ,
14- FALSE AS ` bfcol_5` ,
15- COALESCE(` int64_col` IN (2 .5 , 3 ), FALSE) AS ` bfcol_6` ,
10+ COALESCE(` bool_col` IN (TRUE, FALSE), FALSE) AS ` bfcol_3` ,
11+ COALESCE(` int64_col` IN (1 , 2 , 3 ), FALSE) AS ` bfcol_4` ,
12+ ` int64_col` IS NULL AS ` bfcol_5` ,
13+ COALESCE(` int64_col` IN (1 .0 , 2 .0 , 3 .0 ), FALSE) AS ` bfcol_6` ,
1614 FALSE AS ` bfcol_7` ,
17- COALESCE(` int64_col` IN (123456 ), FALSE) AS ` bfcol_8` ,
15+ COALESCE(` int64_col` IN (2 .5 , 3 ), FALSE) AS ` bfcol_8` ,
16+ FALSE AS ` bfcol_9` ,
17+ FALSE AS ` bfcol_10` ,
18+ COALESCE(` int64_col` IN (123456 ), FALSE) AS ` bfcol_11` ,
1819 (
1920 ` float64_col` IS NULL
20- ) OR ` float64_col` IN (1 , 2 , 3 ) AS ` bfcol_9 `
21+ ) OR ` float64_col` IN (1 , 2 , 3 ) AS ` bfcol_12 `
2122 FROM ` bfcte_0`
2223)
2324SELECT
24- ` bfcol_2` AS ` ints` ,
25- ` bfcol_3` AS ` ints_w_null` ,
26- ` bfcol_4` AS ` floats` ,
27- ` bfcol_5` AS ` strings` ,
28- ` bfcol_6` AS ` mixed` ,
29- ` bfcol_7` AS ` empty` ,
30- ` bfcol_8` AS ` ints_wo_match_nulls` ,
31- ` bfcol_9` AS ` float_in_ints`
25+ ` bfcol_3` AS ` bools` ,
26+ ` bfcol_4` AS ` ints` ,
27+ ` bfcol_5` AS ` ints_w_null` ,
28+ ` bfcol_6` AS ` floats` ,
29+ ` bfcol_7` AS ` strings` ,
30+ ` bfcol_8` AS ` mixed` ,
31+ ` bfcol_9` AS ` empty` ,
32+ ` bfcol_10` AS ` empty_wo_match_nulls` ,
33+ ` bfcol_11` AS ` ints_wo_match_nulls` ,
34+ ` bfcol_12` AS ` float_in_ints`
3235FROM ` bfcte_1`
0 commit comments