summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authorguilhem@mysql.com <>2004-08-19 00:43:48 +0200
committerguilhem@mysql.com <>2004-08-19 00:43:48 +0200
commit6f8f231c35186a70cb12e4eff8664fbc9b847617 (patch)
treec53336b8040aff561c1d2268db5e2af5bd9ce24a /mysql-test
parent8ce92878a2c32785a5af86e9ffa27b4904d01694 (diff)
parent42d30b758baa6fd311e4982b2b79769996a8f0be (diff)
downloadmariadb-git-6f8f231c35186a70cb12e4eff8664fbc9b847617.tar.gz
Merge gbichot@bk-internal.mysql.com:/home/bk/mysql-4.0
into mysql.com:/home/mysql_src/mysql-4.0
Diffstat (limited to 'mysql-test')
-rw-r--r--mysql-test/r/rpl_heap.result12
-rw-r--r--mysql-test/t/rpl_heap.test6
2 files changed, 10 insertions, 8 deletions
diff --git a/mysql-test/r/rpl_heap.result b/mysql-test/r/rpl_heap.result
index 1556bcd5f25..1facbcb7676 100644
--- a/mysql-test/r/rpl_heap.result
+++ b/mysql-test/r/rpl_heap.result
@@ -1,22 +1,22 @@
reset master;
drop table if exists t1;
-create table t1 (a int) type=HEAP;
-insert into t1 values(10);
+create table t1 type=HEAP select 10 as a;
+insert into t1 values(11);
show binlog events from 79;
Log_name Pos Event_type Server_id Orig_log_pos Info
-master-bin.001 79 Query 1 79 use `test`; create table t1 (a int) type=HEAP
-master-bin.001 147 Query 1 147 use `test`; DELETE FROM `test`.`t1`
-master-bin.001 205 Query 1 205 use `test`; insert into t1 values(10)
+master-bin.001 79 Query 1 79 use `test`; create table t1 type=HEAP select 10 as a
+master-bin.001 154 Query 1 154 use `test`; insert into t1 values(11)
reset slave;
start slave;
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
- `a` int(11) default NULL
+ `a` bigint(2) NOT NULL default '0'
) TYPE=HEAP
select * from t1;
a
10
+11
select * from t1;
a
select * from t1 limit 10;
diff --git a/mysql-test/t/rpl_heap.test b/mysql-test/t/rpl_heap.test
index 15f61918034..0bc71eaf30c 100644
--- a/mysql-test/t/rpl_heap.test
+++ b/mysql-test/t/rpl_heap.test
@@ -13,8 +13,10 @@ connect (slave,localhost,root,,test,0,slave.sock);
connection master;
reset master;
drop table if exists t1;
-create table t1 (a int) type=HEAP;
-insert into t1 values(10);
+# we use CREATE SELECT to verify that DELETE does not get into binlog
+# before CREATE SELECT
+create table t1 type=HEAP select 10 as a;
+insert into t1 values(11);
save_master_pos;
show binlog events from 79;
connection slave;