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 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			151 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			151 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
-- Create table with primary key
 | 
						|
  CREATE TABLE TTIME_BASE
 | 
						|
  (PK           INTEGER,
 | 
						|
   TS           DATETIME,
 | 
						|
   PRIMARY KEY (PK),
 | 
						|
   CHECK(PK > 32));
 |