We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ed9029 commit 2b97c2bCopy full SHA for 2b97c2b
tests/unit/core/compile/sqlglot/expressions/snapshots/test_numeric_ops/test_sqrt/out.sql
@@ -5,7 +5,7 @@ WITH `bfcte_0` AS (
5
), `bfcte_1` AS (
6
SELECT
7
*,
8
- CASE WHEN `bfcol_0` <= 0 THEN CAST('NaN' AS FLOAT64) ELSE SQRT(`bfcol_0`) END AS `bfcol_1`
+ CASE WHEN `bfcol_0` < 0 THEN CAST('NaN' AS FLOAT64) ELSE SQRT(`bfcol_0`) END AS `bfcol_1`
9
FROM `bfcte_0`
10
)
11
0 commit comments