mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 01:04:19 +01:00
7ba2916c55
correct the if() condition to match the behavior of the old code that this if() was supposed to replace
6 lines
216 B
Text
6 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;
|