ClickHouse/dbms/tests/queries/0_stateless/00810_in_operators_segfault.sql
Alexander Kuzmenkov 160d8a6416 Ignore non-convertible values at any depth on the right side of IN
operator.

The values that are not convertible to the left argument type can't
match anyway, so it is safe to discard them.
2019-10-14 14:25:03 +03:00

6 lines
131 B
SQL

SET send_logs_level = 'none';
SELECT globalNotIn(['"wh'], [NULL]);
SELECT globalIn([''], [NULL]);
SELECT notIn([['']], [[NULL]]);