Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
N/A
-
None
Description
CREATE OR REPLACE TABLE t1 (pk INT AUTO_INCREMENT PRIMARY KEY, c VARCHAR(8)) ENGINE=MyISAM WITH SYSTEM VERSIONING; |
INSERT INTO t1 VALUES (1,'foo'); |
DELETE FROM t1; |
ALTER TABLE t1 ENGINE=MyISAM; |
ERROR 1112 (42000): Table '#sql-17fe_b' uses an extension that doesn't exist in this MariaDB version |
Also reproducible with Aria.
This variation causes the same problem with InnoDB:
CREATE OR REPLACE TABLE t1 (pk INT AUTO_INCREMENT PRIMARY KEY, c VARCHAR(8), FULLTEXT(c)) ENGINE=InnoDB WITH SYSTEM VERSIONING; |
INSERT INTO t1 VALUES (1,'foo'); |
DELETE FROM t1; |
ALTER TABLE t1 ENGINE=InnoDB; |
Attachments
Issue Links
- relates to
-
MDEV-15121 ER_UNSUPPORTED_EXTENSION when using ON DELETE CASCADE
- Closed
-
MDEV-15136 'delete from user where username = "admin"' failed: 1112: Table 'user' uses an extension that doesn't exist in this MariaDB version
- Closed