1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

Dlee mtr restructure (#2494)

* Restructured test suites and added autopilot and extended suites

* Updated autopilot with correct branch - develop

* Moved setup test case to a 'setup' directory, for consistency

* Fixed a path issue

* Updated some tests cases to keep up with development

Co-authored-by: root <root@rocky8.localdomain>
This commit is contained in:
Daniel Lee
2022-08-09 13:20:56 -05:00
committed by GitHub
parent 8b15e2f6a4
commit 4c9d6e39ac
6839 changed files with 10542409 additions and 77 deletions

View File

@ -0,0 +1,19 @@
USE tpch1;
select n_name, sum(l_quantity), sum(l_extendedprice),
max(l_orderkey),
sum(l_partkey),
avg(l_quantity),
min(l_commitdate),
count(l_linestatus)
from nation, lineitem
where l_quantity = 5 and l_partkey < 100
and n_nationkey = l_linenumber
group by n_name order by n_name;
n_name sum(l_quantity) sum(l_extendedprice) max(l_orderkey) sum(l_partkey) avg(l_quantity) min(l_commitdate) count(l_linestatus)
ARGENTINA 80.00 75593.15 5530822 718 5.000000 1992-05-19 16
BRAZIL 45.00 43097.35 4346432 519 5.000000 1992-03-30 9
CANADA 40.00 37496.35 5744288 299 5.000000 1993-09-13 8
EGYPT 50.00 47887.70 4874051 577 5.000000 1993-12-11 10
ETHIOPIA 30.00 28626.50 5557697 325 5.000000 1992-11-19 6
FRANCE 15.00 14150.60 5954052 130 5.000000 1992-07-23 3
GERMANY 10.00 9545.50 5435525 109 5.000000 1993-07-03 2