mirror of
https://github.com/MariaDB/server.git
synced 2025-11-30 05:23:50 +03:00
correct the if() condition to match the behavior of the old code that this if() was supposed to replace
7 lines
216 B
Plaintext
7 lines
216 B
Plaintext
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;
|