mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
8fc78e08b0
removal of duplicate code in mf_iocache.cc work on failsafe replication work on SEQ_READ_APPEND io cache include/my_sys.h: updates for SEQ_READ_APPEND libmysql/Makefile.am: fix for mysys/mf_iocache.c libmysql/libmysql.c: updates for new format of SHOW SLAVE HOSTS mysql-test/r/rpl000001.result: test replication of LOAD DATA LOCAL INFILE mysql-test/r/rpl000002.result: updated test result mysql-test/t/rpl000001.test: test LOAD DATA LOCAL INFILE mysys/mf_iocache.c: cleanup to remove duplicate functionality some work on SEQ_READ_APPEND sql/mf_iocache.cc: cleanup to remove duplicate functionality sql/repl_failsafe.cc: more work on failsafe replication sql/repl_failsafe.h: more work on failsafe replication sql/slave.cc: cleanup more work on failsafe replication sql/sql_load.cc: fixed bug on replicating empty file loads got LOAD DATA LOCAL INFILE to work again, and to be replicated sql/sql_repl.cc: cleanup more work on failsafe replication sql/sql_repl.h: more work on failsafe replication
96 lines
2 KiB
Text
96 lines
2 KiB
Text
slave stop;
|
|
reset master;
|
|
reset slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
slave start;
|
|
use test;
|
|
drop table if exists t1,t3;
|
|
create table t1 (word char(20) not null);
|
|
load data infile '../../std_data/words.dat' into table t1;
|
|
load data local infile '/home/sasha/bk/mysql-4.0/mysql-test/std_data/words.dat' into table t1;
|
|
select * from t1;
|
|
word
|
|
Aarhus
|
|
Aaron
|
|
Ababa
|
|
aback
|
|
abaft
|
|
abandon
|
|
abandoned
|
|
abandoning
|
|
abandonment
|
|
abandons
|
|
Aarhus
|
|
Aaron
|
|
Ababa
|
|
aback
|
|
abaft
|
|
abandon
|
|
abandoned
|
|
abandoning
|
|
abandonment
|
|
abandons
|
|
set password = password('foo');
|
|
set password = password('');
|
|
create table t3(n int);
|
|
insert into t3 values(1),(2);
|
|
use test;
|
|
select * from t3;
|
|
n
|
|
1
|
|
2
|
|
select sum(length(word)) from t1;
|
|
sum(length(word))
|
|
141
|
|
drop table t1,t3;
|
|
reset master;
|
|
reset slave;
|
|
drop table if exists t1,t2;
|
|
create table t1(n int);
|
|
insert into t1 values(10);
|
|
insert into t1 values(9);
|
|
insert into t1 values(8);
|
|
insert into t1 values(7);
|
|
insert into t1 values(6);
|
|
insert into t1 values(5);
|
|
insert into t1 values(4);
|
|
insert into t1 values(3);
|
|
insert into t1 values(2);
|
|
insert into t1 values(1);
|
|
create table t2(id int);
|
|
insert into t2 values(connection_id());
|
|
create temporary table t1_temp(n int);
|
|
insert into t1_temp select get_lock('crash_lock%20C', 1) from t2;
|
|
update t1 set n = n + get_lock('crash_lock%20C', 2);
|
|
select (@id := id) - id from t2;
|
|
(@id := id) - id
|
|
0
|
|
kill @id;
|
|
drop table t2;
|
|
Server shutdown in progress
|
|
set sql_slave_skip_counter=1;
|
|
slave start;
|
|
select count(*) from t1;
|
|
count(*)
|
|
10
|
|
drop table t1;
|
|
create table t1 (n int);
|
|
insert into t1 values(3456);
|
|
use mysql;
|
|
insert into user (Host, User, Password)
|
|
VALUES ("10.10.10.%", "blafasel2", password("blafasel2"));
|
|
select select_priv,user from mysql.user where user = 'blafasel2';
|
|
select_priv user
|
|
N blafasel2
|
|
update user set Select_priv = "Y" where User="blafasel2";
|
|
select select_priv,user from mysql.user where user = 'blafasel2';
|
|
select_priv user
|
|
Y blafasel2
|
|
use test;
|
|
select n from t1;
|
|
n
|
|
3456
|
|
select select_priv,user from mysql.user where user = 'blafasel2';
|
|
select_priv user
|
|
Y blafasel2
|
|
drop table t1;
|