ClickHouse/tests/queries/0_stateless/02497_remote_disk_fat_column.sql
Nikolai Kochetov f75250eaf4 Fix style.
2022-12-05 21:27:54 +00:00

9 lines
518 B
SQL

-- Tags: no-random-settings, no-fasttest, no-tsan, no-asan, no-msan
set allow_suspicious_fixed_string_types=1;
create table fat_granularity (x UInt32, fat FixedString(160000)) engine = MergeTree order by x settings storage_policy = 's3_cache';
insert into fat_granularity select number, toString(number) || '_' from numbers(100000) settings max_block_size = 8192, max_insert_threads=8;
-- Too large sizes of FixedString to deserialize
select x from fat_granularity prewhere fat like '256\_%' settings max_threads=2;