diff options
author | unknown <monty@work.mysql.com> | 2001-09-17 23:26:00 +0200 |
---|---|---|
committer | unknown <monty@work.mysql.com> | 2001-09-17 23:26:00 +0200 |
commit | d8ae9669cd11f9c61105a9cbf19f9318a0e783fc (patch) | |
tree | a544afdc5cdc3dba7918f6a0d8f1341a2fe74ff2 /mysql-test | |
parent | 9f939ecce6ccf73c5192d721d826f0a2a58a9b3e (diff) | |
parent | 9d62e4a05b1c8399787b624a90e0cab0aa42c57c (diff) | |
download | mariadb-git-d8ae9669cd11f9c61105a9cbf19f9318a0e783fc.tar.gz |
merge
Docs/manual.texi:
Auto merged
extra/perror.c:
Auto merged
include/my_base.h:
Auto merged
include/mysql.h:
Auto merged
scripts/make_binary_distribution.sh:
Auto merged
sql/ha_berkeley.cc:
Auto merged
sql/handler.h:
Auto merged
sql/mysqld.cc:
Auto merged
client/mysqltest.c:
Auto merged
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/t/rpl000006.test | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/mysql-test/t/rpl000006.test b/mysql-test/t/rpl000006.test index 8668aac0b72..b8ee690837e 100644 --- a/mysql-test/t/rpl000006.test +++ b/mysql-test/t/rpl000006.test @@ -15,3 +15,21 @@ drop table foo; save_master_pos; connection slave; sync_with_master; +connection master; +set SQL_LOG_BIN=1; +CREATE TABLE t1 ( + a int not null +) TYPE=MyISAM MAX_ROWS=4000 CHECKSUM=1; + +INSERT INTO t1 VALUES (1); +save_master_pos; +connection slave; +sync_with_master; +drop table t1; +load table t1 from master; +check table t1; +connection master; +drop table t1; +save_master_pos; +connection slave; +sync_with_master; |