You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-11-08 03:42:19 +03:00
16 lines
624 B
SQL
16 lines
624 B
SQL
select p_partkey, s_suppkey from part, lineitem, supplier
|
|
where p_partkey = l_partkey and l_suppkey = s_suppkey and
|
|
p_partkey between 0 and 50020000 and p_size between 0 and 1 and
|
|
l_partkey between 49975000 and 200000000 and l_shipdate between '1992-01-01' and '1992-04-24';
|
|
select calgetstats();
|
|
select now();
|
|
select p_partkey, s_suppkey from part, lineitem, supplier
|
|
where p_partkey = l_partkey and l_suppkey = s_suppkey and
|
|
p_partkey between 0 and 50020000 and p_size between 0 and 1 and
|
|
l_partkey between 49975000 and 200000000 and l_shipdate between '1992-01-01' and '1992-04-24';
|
|
select calgetstats();
|
|
quit
|
|
|
|
|
|
|