You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The same server, downgrade to ClickHouse version 18.10.3.
select 1 from xxxx where row like '%test:0%' 0 rows in set. Elapsed: 0.686 sec. Processed 100.00 thousand rows, 4.69 GB (145.68 thousand rows/s., 6.83 GB/s.)
Connected to ClickHouse server version 18.14.10 revision 54409.
"Macros" CREATE_INSERT:
create table xxxx (row String) engine=Memory;
insert into xxxx(row) select arrayStringConcat( arrayMap(x -> 'x'||toString(x)||':"'||toString(9999999)||'"',range(3000)), ',' )||',"test":"111",' from numbers(100000);
set max_block_size=65536;
CREATE_INSERT
select 1 from xxxx where row like '%test:0%'
0 rows in set. Elapsed: 4.383 sec
Processed 100.00 thousand rows, 4.69 GB (22.81 thousand rows/s., 1.07 GB/s.)
set max_block_size=5000;
select 1 from xxxx where row like '%test:0%'
0 rows in set. Elapsed: 4.546 sec
drop table xxxx;
exit / enter CH client
set max_block_size=5000;
CREATE_INSERT;
select 1 from xxxx where row like '%test:0%'
0 rows in set. Elapsed: 0.963 sec.
set max_block_size=65536;
select 1 from xxxx where row like '%test:0%';
0 rows in set. Elapsed: 1.061 sec.
The text was updated successfully, but these errors were encountered: