Skip to content

Commit

Permalink
Update tests to set allow_experimental_analyzer
Browse files Browse the repository at this point in the history
  • Loading branch information
josh-hildred committed Apr 10, 2024
1 parent dfa7a97 commit 70438f7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/queries/0_stateless/03032_redundant_equals.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ ORDER BY k;

INSERT INTO test_table SELECT number FROM numbers(10000000);

SET allow_experimental_analyzer = 1;

SELECT * FROM test_table WHERE k in (100) = 1;
SELECT * FROM test_table WHERE k = (100) = 1;
SELECT * FROM test_table WHERE k not in (100) = 0;
Expand Down

0 comments on commit 70438f7

Please sign in to comment.