Skip to content

Commit f1a55f2

Browse files
authored
fix bug in test
1 parent fff604c commit f1a55f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/queries/0_stateless/03390_non_constant_case.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ END = 1;
3535
SELECT DISTINCT caseWithExpression(1.1, toNullable(0.1), 'a', 1.1, 'b', materialize(2.1), toFixedString('c', 1), 'default' ) AS f;
3636

3737
SELECT
38-
caseWithExpression(NULL, materialize(NULL), NULL) AS f1,
38+
caseWithExpression(NULL, materialize(NULL), NULL, NULL) AS f1,
3939
if(NULL, toDateTimeOrZero(NULL), NULL) AS f2
4040
FROM numbers(1);
4141

0 commit comments

Comments
 (0)