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 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			508 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			508 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#
 | 
						|
# Test case migrated from regression test suite:
 | 
						|
# ./mysql/queries/nightly/alltest/test000/tpchSchemaValidation/j11.sql
 | 
						|
#
 | 
						|
# Author: Susil, susil.behera@mariadb.com
 | 
						|
#
 | 
						|
 | 
						|
-- source ../include/have_columnstore.inc
 | 
						|
 | 
						|
--disable_warnings
 | 
						|
drop table if exists j11;
 | 
						|
--enable_warnings
 | 
						|
 | 
						|
create table j11 (j11_key int)engine=columnstore;
 | 
						|
 | 
						|
insert into j11 values (11),(12),(13),(14),(15),(16),(17),(18),(19),(20),(21),(22),(23),(24),(25),(null);
 | 
						|
 | 
						|
select * from j11;
 | 
						|
--disable_warnings
 | 
						|
drop table j11;
 | 
						|
--enable_warnings
 | 
						|
#
 |