ClickHouse/tests/queries/0_stateless/02344_insert_profile_events_stress.sql
Alexey Milovidov f81e8aa345 Update tests
2024-07-25 22:08:32 +02:00

7 lines
346 B
SQL

-- Tags: no-parallel, long, no-debug, no-tsan, no-msan, no-asan
SET max_rows_to_read = 0;
create table data_02344 (key Int) engine=Null;
-- 3e9 rows is enough to fill the socket buffer and cause INSERT hung.
insert into function remote('127.1', currentDatabase(), data_02344) select number from numbers(3e9) settings prefer_localhost_replica=0;