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 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			212 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			212 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
USE tpch1;
 | 
						|
drop table if exists bug4394;
 | 
						|
create table bug4394(c1 datetime) engine=columnstore;
 | 
						|
insert into bug4394 values('1000-01-01 00:00:00');
 | 
						|
select * from bug4394;
 | 
						|
c1
 | 
						|
1000-01-01 00:00:00
 | 
						|
drop table bug4394;
 |