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>
		
			
				
	
	
		
			26 lines
		
	
	
		
			710 B
		
	
	
	
		
			SQL
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			710 B
		
	
	
	
		
			SQL
		
	
	
		
			Executable File
		
	
	
	
	
# create lineorder table
 | 
						|
#
 | 
						|
--disable_warnings
 | 
						|
drop table if exists lineorder;
 | 
						|
--enable_warnings
 | 
						|
create table lineorder (
 | 
						|
        lo_orderkey bigint,
 | 
						|
        lo_linenumber int,
 | 
						|
        lo_custkey int,
 | 
						|
        lo_partkey int,
 | 
						|
        lo_suppkey int,
 | 
						|
        lo_orderdate int,
 | 
						|
        lo_orderpriority char (15),
 | 
						|
        lo_shippriority char (1),
 | 
						|
        lo_quantity decimal (12,2),
 | 
						|
        lo_extendedprice decimal (12,2),
 | 
						|
        lo_ordtotalprice decimal (12,2),
 | 
						|
        lo_discount decimal (12,2),
 | 
						|
        lo_revenue decimal (12,2),
 | 
						|
        lo_supplycost decimal (12,2),
 | 
						|
        lo_tax decimal (12,2),
 | 
						|
        lo_commitdate int,
 | 
						|
        lo_shipmode char (10)
 | 
						|
) engine=Columnstore;
 | 
						|
SHOW CREATE TABLE lineorder;
 |