mirror of
https://github.com/MariaDB/server.git
synced 2025-07-06 19:38:16 +02:00

correct the if() condition to match the behavior of the old code that this if() was supposed to replace
9 lines
232 B
Text
9 lines
232 B
Text
--source include/have_log_bin.inc
|
|
--source include/have_xtradb.inc
|
|
|
|
create table t1 (i int) engine=InnoDB;
|
|
set innodb_fake_changes = 1;
|
|
--disable_abort_on_error
|
|
insert into t1 values (1);
|
|
set innodb_fake_changes = 0;
|
|
drop table t1;
|