2008-06-06 15:37:16 +02:00
|
|
|
# test of cases where we can safely disable logging
|
|
|
|
|
|
|
|
--source include/have_maria.inc
|
2008-07-01 22:47:09 +02:00
|
|
|
# can't restart server in embedded
|
|
|
|
--source include/not_embedded.inc
|
2008-06-06 15:37:16 +02:00
|
|
|
|
2011-04-25 17:22:25 +02:00
|
|
|
set global aria_log_file_size=4294959104;
|
2008-06-06 15:37:16 +02:00
|
|
|
|
|
|
|
--disable_warnings
|
|
|
|
drop database if exists mysqltest;
|
|
|
|
--enable_warnings
|
|
|
|
create database mysqltest;
|
|
|
|
|
2008-07-01 22:47:09 +02:00
|
|
|
connect (admin, localhost, root,,mysqltest,,);
|
2008-06-06 15:37:16 +02:00
|
|
|
--enable_reconnect
|
|
|
|
|
|
|
|
connection default;
|
|
|
|
use mysqltest;
|
|
|
|
--enable_reconnect
|
|
|
|
|
|
|
|
# checkpoints can make log unrepeatable
|
2010-09-12 18:40:01 +02:00
|
|
|
let $def_checkinterval=`select @@global.aria_checkpoint_interval`;
|
|
|
|
set global aria_checkpoint_interval=0;
|
2008-06-06 15:37:16 +02:00
|
|
|
|
|
|
|
# Prepare table to help for big load
|
|
|
|
create table t2 (a varchar(100)) engine=myisam;
|
|
|
|
insert into t2 select repeat('z',100);
|
|
|
|
insert into t2 select * from t2;
|
|
|
|
insert into t2 select * from t2;
|
|
|
|
insert into t2 select * from t2;
|
|
|
|
insert into t2 select * from t2;
|
|
|
|
insert into t2 select * from t2;
|
|
|
|
insert into t2 select * from t2;
|
|
|
|
|
|
|
|
# INSERT SELECT
|
|
|
|
|
|
|
|
# no optimization because table not empty
|
|
|
|
|
2010-09-12 18:40:01 +02:00
|
|
|
# SHOW ENGINE ARIA LOGS could be influenced by older logs
|
2008-06-06 15:37:16 +02:00
|
|
|
-- source include/maria_empty_logs.inc
|
2010-09-12 18:40:01 +02:00
|
|
|
create table t1 (a varchar(100)) engine=aria transactional=1;
|
2008-06-06 15:37:16 +02:00
|
|
|
show create table t1;
|
2010-09-12 18:40:01 +02:00
|
|
|
--replace_regex /; .+aria_log/aria_log/
|
|
|
|
show engine aria logs;
|
2008-06-06 15:37:16 +02:00
|
|
|
|
|
|
|
insert into t1 values('a');
|
|
|
|
insert into t1 select * from t2;
|
2010-09-12 18:40:01 +02:00
|
|
|
--replace_regex /; .+aria_log/aria_log/
|
|
|
|
show engine aria logs;
|
2008-06-06 15:37:16 +02:00
|
|
|
|
|
|
|
# optimization because table is empty
|
|
|
|
-- source include/maria_empty_logs.inc
|
|
|
|
truncate table t1;
|
|
|
|
insert into t1 select * from t2;
|
2010-09-12 18:40:01 +02:00
|
|
|
--replace_regex /; .+aria_log/aria_log/
|
|
|
|
show engine aria logs;
|
2008-06-06 15:37:16 +02:00
|
|
|
|
|
|
|
drop table t1;
|
|
|
|
|
|
|
|
# same for CREATE SELECT
|
|
|
|
|
|
|
|
# no optimization because table not empty
|
|
|
|
-- source include/maria_empty_logs.inc
|
2010-09-12 18:40:01 +02:00
|
|
|
create table t1 (a varchar(100)) engine=aria transactional=1;
|
2008-06-06 15:37:16 +02:00
|
|
|
insert into t1 values('a');
|
|
|
|
create table if not exists t1 select * from t2;
|
2010-09-12 18:40:01 +02:00
|
|
|
--replace_regex /; .+aria_log/aria_log/
|
|
|
|
show engine aria logs;
|
2008-06-06 15:37:16 +02:00
|
|
|
|
|
|
|
# optimization because table is empty
|
|
|
|
-- source include/maria_empty_logs.inc
|
|
|
|
drop table t1;
|
2010-09-12 18:40:01 +02:00
|
|
|
create table t1 engine=aria transactional=1 select * from t2;
|
|
|
|
--replace_regex /; .+aria_log/aria_log/
|
|
|
|
show engine aria logs;
|
2008-06-06 15:37:16 +02:00
|
|
|
|
|
|
|
drop database mysqltest;
|
|
|
|
|
|
|
|
--disable_result_log
|
|
|
|
--disable_query_log
|
2010-09-12 18:40:01 +02:00
|
|
|
eval set global aria_checkpoint_interval=$def_checkinterval;
|
2008-06-06 15:37:16 +02:00
|
|
|
--enable_result_log
|
|
|
|
--enable_query_log
|