You've already forked mariadb-columnstore-engine
							
							
				mirror of
				https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
				synced 2025-11-03 17:13:17 +03:00 
			
		
		
		
	* 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>
		
			
				
	
	
		
			19 lines
		
	
	
		
			723 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			723 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
USE tpch1;
 | 
						|
select  n_name, sum(l_quantity), sum(l_extendedprice),
 | 
						|
max(l_quantity),
 | 
						|
sum(l_partkey),
 | 
						|
avg(l_suppkey),
 | 
						|
min(l_extendedprice),
 | 
						|
max(l_discount),
 | 
						|
count(l_shipdate),
 | 
						|
avg(l_tax)
 | 
						|
from nation, lineitem
 | 
						|
where l_suppkey between 10 and 70
 | 
						|
and n_regionkey = 1
 | 
						|
and n_nationkey = l_linenumber
 | 
						|
group by n_name order by n_name;
 | 
						|
n_name	sum(l_quantity)	sum(l_extendedprice)	max(l_quantity)	sum(l_partkey)	avg(l_suppkey)	min(l_extendedprice)	max(l_discount)	count(l_shipdate)	avg(l_tax)
 | 
						|
ARGENTINA	235190.00	310632614.01	50.00	910264586	39.8731	928.02	0.10	9330	0.040074
 | 
						|
BRAZIL	204999.00	269887405.30	50.00	792860154	39.9782	914.01	0.10	8041	0.039388
 | 
						|
CANADA	166158.00	219624566.68	50.00	639555348	39.4165	919.01	0.10	6454	0.040192
 |