mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 00:52:02 +00:00
28 lines
1.6 KiB
SQL
28 lines
1.6 KiB
SQL
-- https://github.com/ClickHouse/ClickHouse/issues/60223
|
|
|
|
CREATE TABLE test
|
|
(
|
|
t String,
|
|
id String,
|
|
h Map(String, String)
|
|
)
|
|
ENGINE = MergeTree
|
|
ORDER BY (t, id) SETTINGS index_granularity = 4096 ;
|
|
|
|
insert into test values ('xxx', 'x', {'content-type':'text/plain','user-agent':'bulk-tests'});
|
|
insert into test values ('xxx', 'y', {'content-type':'application/json','user-agent':'bulk-tests'});
|
|
insert into test select 'xxx', number, map('content-type', 'x' ) FROM numbers(1e2);
|
|
|
|
optimize table test final;
|
|
|
|
SELECT count() FROM test PREWHERE hasToken(h['user-agent'], 'bulk') WHERE hasToken(h['user-agent'], 'tests') and t = 'xxx';
|
|
SELECT count() FROM test PREWHERE hasToken(h['user-agent'], 'tests') WHERE hasToken(h['user-agent'], 'bulk') and t = 'xxx';
|
|
SELECT count() FROM test WHERE hasToken(h['user-agent'], 'bulk') and hasToken(h['user-agent'], 'tests') and t = 'xxx';
|
|
SELECT count() FROM test PREWHERE hasToken(h['user-agent'], 'bulk') and hasToken(h['user-agent'], 'tests') and t = 'xxx';
|
|
SELECT count() FROM test PREWHERE hasToken(h['user-agent'], 'bulk') and hasToken(h['user-agent'], 'tests') WHERE t = 'xxx';
|
|
SELECT count() FROM test PREWHERE hasToken(h['user-agent'], 'tests') and hasToken(h['user-agent'], 'bulk') WHERE t = 'xxx';
|
|
SELECT count() FROM test PREWHERE hasToken(h['user-agent'], 'tests') and hasToken(h['user-agent'], 'bulk');
|
|
SELECT count() FROM test PREWHERE hasToken(h['user-agent'], 'bulk') and hasToken(h['user-agent'], 'tests');
|
|
SELECT count() FROM test WHERE hasToken(h['user-agent'], 'tests') and hasToken(h['user-agent'], 'bulk');
|
|
SELECT count() FROM test WHERE hasToken(h['user-agent'], 'bulk') and hasToken(h['user-agent'], 'tests');
|