Skip to content

Commit 2b97c2b

Browse files
committed
revert sqrt change
1 parent 7ed9029 commit 2b97c2b

File tree

1 file changed

+1
-1
lines changed
  • tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_sqrt

1 file changed

+1
-1
lines changed

tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_sqrt/out.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ WITH `bfcte_0` AS (
55
), `bfcte_1` AS (
66
SELECT
77
*,
8-
CASE WHEN `bfcol_0` <= 0 THEN CAST('NaN' AS FLOAT64) ELSE SQRT(`bfcol_0`) END AS `bfcol_1`
8+
CASE WHEN `bfcol_0` < 0 THEN CAST('NaN' AS FLOAT64) ELSE SQRT(`bfcol_0`) END AS `bfcol_1`
99
FROM `bfcte_0`
1010
)
1111
SELECT

0 commit comments

Comments
 (0)