mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
e793dfe95e
client/mysql.cc: Auto merged client/mysqldump.c: Auto merged configure.in: Auto merged include/my_pthread.h: Auto merged include/mysql.h: Auto merged libmysql/libmysql.c: Auto merged libmysqld/libmysqld.c: Auto merged mysql-test/r/innodb.result: Auto merged mysql-test/r/rpl000001.result: Auto merged mysql-test/r/rpl000004.result: Auto merged mysql-test/r/type_blob.result: Auto merged mysql-test/t/innodb.test: Auto merged mysql-test/t/rpl000001.test: Auto merged mysys/my_init.c: Auto merged scripts/mysqld_safe.sh: Auto merged sql/item_cmpfunc.h: Auto merged sql/mysql_priv.h: Auto merged sql/sql_delete.cc: Auto merged sql/sql_handler.cc: Auto merged sql/sql_table.cc: Auto merged sql/structs.h: Auto merged Makefile.am: Merge with 4.0.11 mysql-test/mysql-test-run.sh: Merge with 4.0.11 mysql-test/r/rpl_log.result: Use local version (needs to be updated) mysql-test/t/type_blob.test: Merge with 4.0.11 sql/mysqld.cc: Merge with 4.0.11 sql/protocol.cc: Use local version
28 lines
748 B
Text
28 lines
748 B
Text
stop slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
reset master;
|
|
reset slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
start slave;
|
|
set SQL_LOG_BIN=0;
|
|
create table t1 (word char(20) not null, index(word));
|
|
load data infile '../../std_data/words.dat' into table t1;
|
|
create table t2 (word char(20) not null);
|
|
load data infile '../../std_data/words.dat' into table t2;
|
|
create table t3 (word char(20) not null primary key);
|
|
load table t1 from master;
|
|
load table t2 from master;
|
|
load table t3 from master;
|
|
check table t1;
|
|
Table Op Msg_type Msg_text
|
|
test.t1 check status OK
|
|
select count(*) from t2;
|
|
count(*)
|
|
70
|
|
select count(*) from t3;
|
|
count(*)
|
|
0
|
|
set SQL_LOG_BIN=1;
|
|
drop table if exists t1,t2,t3;
|
|
create table t1(n int);
|
|
drop table t1;
|