ClickHouse/tests/queries/0_stateless/00067_replicate_segfault.sql

5 lines
257 B
MySQL
Raw Normal View History

2021-09-12 12:35:27 +00:00
-- Tags: replica
2014-08-20 04:57:03 +00:00
SELECT arrayFilter(x -> materialize(0), materialize([0])) AS p, arrayAll(y -> arrayExists(x -> y != x, p), p) AS test;
SELECT arrayFilter(x -> materialize(0), materialize([''])) AS p, arrayAll(y -> arrayExists(x -> y != x, p), p) AS test;