16 lines
322 B
Plaintext
16 lines
322 B
Plaintext
# name: benchmark/micro/zonemaps/zonemaps.benchmark
|
|
# description: Benchmark Zonemaps
|
|
# group: [zonemaps]
|
|
|
|
name Zonemaps
|
|
group zonemaps
|
|
|
|
load
|
|
create table t as select range a, length(range::VARCHAR) b, mod(range,10000) c, 5 d, 10000 e from range(100000000);
|
|
|
|
run
|
|
select count(*) from t where b in (1,2,4) ;
|
|
|
|
result I
|
|
9100
|