ClickHouse/tests/queries/0_stateless/01353_neighbor_overflow.sql
Nikita Taranov 2263291fd8 fix tests 1
2024-04-30 13:28:29 +01:00

4 lines
261 B
SQL

SET allow_deprecated_functions = 1;
SELECT neighbor(toString(number), -9223372036854775808) FROM numbers(100); -- { serverError 69 }
WITH neighbor(toString(number), toInt64(rand64())) AS x SELECT * FROM system.numbers WHERE NOT ignore(x); -- { serverError 69 }