mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
MDEV-14681 Bogus ER_UNSUPPORTED_EXTENSION
This commit is contained in:
@ -365,5 +365,11 @@ alter table t modify y int without system versioning;
|
||||
insert into t values(1, 1);
|
||||
update t set y=2;
|
||||
|
||||
--echo # MDEV-14681 Bogus ER_UNSUPPORTED_EXTENSION
|
||||
create or replace table t1 (pk int auto_increment unique) with system versioning;
|
||||
insert into t1 values (1);
|
||||
delete from t1;
|
||||
alter table t1 engine=myisam;
|
||||
|
||||
drop database test;
|
||||
create database test;
|
||||
|
Reference in New Issue
Block a user