mirror of
https://github.com/MariaDB/server.git
synced 2025-07-16 08:18:12 +02:00

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;
|