ClickHouse/tests/queries/0_stateless/03161_cnf_reduction.reference
2024-05-23 19:03:56 +03:00

24 lines
500 B
Plaintext

-- Expected plan with analyzer:
SELECT id
FROM `03161_table`
WHERE f
SETTINGS convert_query_to_cnf = 1, optimize_using_constraints = 1, allow_experimental_analyzer = 1
-- Expected result with analyzer:
1
-- Expected plan w/o analyzer:
SELECT id
FROM `03161_table`
WHERE f
SETTINGS convert_query_to_cnf = 1, optimize_using_constraints = 1, allow_experimental_analyzer = 0
-- Expected result w/o analyzer:
1
-- Reproducer from the issue with analyzer
2
-- Reproducer from the issue w/o analyzer
2