Skip to content

Commit 8077734

Browse files
fix shapshot from merge
1 parent 9414be1 commit 8077734

File tree

1 file changed

+1
-5
lines changed
  • tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_any

1 file changed

+1
-5
lines changed

tests/unit/core/compile/sqlglot/aggregations/snapshots/test_unary_compiler/test_any/window_out.sql

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,7 @@ WITH `bfcte_0` AS (
55
), `bfcte_1` AS (
66
SELECT
77
*,
8-
CASE
9-
WHEN `bool_col` IS NULL
10-
THEN NULL
11-
ELSE COALESCE(LOGICAL_OR(`bool_col`) OVER (), FALSE)
12-
END AS `bfcol_1`
8+
COALESCE(LOGICAL_OR(`bool_col`) OVER (), FALSE) AS `bfcol_1`
139
FROM `bfcte_0`
1410
)
1511
SELECT

0 commit comments

Comments
 (0)