summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/sys_vars/r/innodb_flush_method_func.result
blob: c4881df9375be867a12f5cdd9e19a2d5fc9cd1e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
call mtr.add_suppression("InnoDB: Failed to set .*DIRECT");
select @@innodb_flush_method;
@@innodb_flush_method
O_DIRECT
create table t(a serial) engine=innodb;
FLUSH TABLES;
# restart: --innodb-flush-method=5
select @@innodb_flush_method;
@@innodb_flush_method
O_DIRECT_NO_FSYNC
insert into t values(0);
FLUSH TABLES;
# restart: --innodb-flush-method=0
select @@innodb_flush_method;
@@innodb_flush_method
fsync
drop table t;