GIF89a; Mini Shell

Mini Shell

Direktori : /proc/self/root/proc/self/root/usr/share/mysql-test/suite/rpl/t/
Upload File :
Current File : //proc/self/root/proc/self/root/usr/share/mysql-test/suite/rpl/t/rpl_slave_load_in.test

##########################################################################
# This test verifies if a slave is able to process a "LOAD DATA INFILE" 
# event while the "--secure-file-priv" option is set.
# 
# The test is divided in two steps:
#    1 - Creates tables and populates them through "LOAD DATA INFILE".
#    2 - Compares the master and slave.
##########################################################################
--source include/have_innodb.inc
--source include/master-slave.inc

##########################################################################
#                            Loading data
##########################################################################
connection master;

create table t1(a int not null auto_increment, b int, primary key(a));
create table t2(a int not null auto_increment, b int, primary key(a)) engine=innodb;

load data infile '../../std_data/rpl_loaddata.dat' into table t1;

start transaction;
  insert into t2(b) values (1);
  insert into t2(b) values (2);
  load data infile '../../std_data/rpl_loaddata.dat' into table t2;
  load data infile '../../std_data/rpl_loaddata.dat' into table t2;
commit;

##########################################################################
#                       Checking Consistency
##########################################################################
--source include/sync_slave_sql_with_master.inc

let $diff_tables= master:t1, slave:t1;
source include/diff_tables.inc;

let $diff_tables= master:t2, slave:t2;
source include/diff_tables.inc;

##########################################################################
#                             Clean up
##########################################################################
connection master;

drop table t1;
drop table t2;

--source include/sync_slave_sql_with_master.inc
--source include/rpl_end.inc

./BlackJoker Mini Shell 1.0