mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 19:11:46 +01:00
7 lines
216 B
Text
7 lines
216 B
Text
|
create table t1 (i int) engine=InnoDB;
|
||
|
set innodb_fake_changes = 1;
|
||
|
insert into t1 values (1);
|
||
|
ERROR HY000: Got error 131 "Command not supported by database" during COMMIT
|
||
|
set innodb_fake_changes = 0;
|
||
|
drop table t1;
|