Details
- 
    
Bug
 - 
    Status: Closed (View Workflow)
 - 
    
Critical
 - 
    Resolution: Fixed
 - 
    10.3.4
 - 
    None
 
Description
					create table user  | 
		
					(
			 | 
		
					id int auto_increment primary key,  | 
		
					username varchar(50) not null  | 
		
					) engine innodb with system versioning;  | 
		
| 
					 | 
		
					create table products  | 
		
					(
			 | 
		
					id int auto_increment primary key,  | 
		
					name varchar(100) not null,  | 
		
					modifiedby int not null,  | 
		
					foreign key(modifiedby) references user(id) on delete cascade  | 
		
					) engine innodb with system versioning;  | 
		
					 
			 | 
		
| 
					 | 
		
					insert into user(username) values ("admin");  | 
		
| 
					 | 
		
					insert into products(name, modifiedby) values ("apple", 1);  | 
		
					delete from user where username = "admin";  | 
		
Attachments
Issue Links
- relates to
 - 
                    
MDEV-14681 Bogus ER_UNSUPPORTED_EXTENSION (Table uses an extension that doesn't exist in this MariaDB version)
-         
 - Closed
 
 -         
 - 
                    
MDEV-15121 ER_UNSUPPORTED_EXTENSION when using ON DELETE CASCADE
-         
 - Closed
 
 -