mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
10 lines
232 B
Text
10 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;
|