mirror of
https://github.com/MariaDB/server.git
synced 2025-01-26 00:34:18 +01:00
7ba2916c55
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;
|