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
		
	
	
		
			247 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			247 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
-- Create table with named references constraint and on delete action
 | 
						|
CREATE TABLE calpont.PART_1453
 | 
						|
(p_29 numeric(5,2) primary key,
 | 
						|
 constraint fooby
 | 
						|
  foreign key (p_29)
 | 
						|
   references Customers(p_partkey)
 | 
						|
   on delete restrict)
 | 
						|
engine=infinidb;
 |