diff options
author | unknown <jmiller@mysql.com> | 2006-02-08 13:08:19 +0100 |
---|---|---|
committer | unknown <jmiller@mysql.com> | 2006-02-08 13:08:19 +0100 |
commit | 68b51ff01c8cb04a4168debe528581a9e8a34fc4 (patch) | |
tree | f0933933136c4a3482138d84bc20073705a8b78c | |
parent | 642762bd3d963ea593bcdad0e33f04e6fe08827b (diff) | |
download | mariadb-git-68b51ff01c8cb04a4168debe528581a9e8a34fc4.tar.gz |
More updates for using NDB as default and some bug fixes along the way
mysql-test/extra/rpl_tests/rpl_insert_id.test:
Updated wiht 1022 error, order by and PK for use with NDB engine
mysql-test/r/rpl_insert_id.result:
Updated wiht 1022 error, order by and PK for use with NDB engine
mysql-test/t/rpl_skip_error.test:
updated to wrk with ndb
mysql-test/r/rpl_skip_error.result:
updated to wrk with ndb
mysql-test/t/rpl_sporadic_master.test:
updated to wrk with ndb
mysql-test/r/rpl_sporadic_master.result:
updated to wrk with ndb
mysql-test/t/rpl_row_trig002.test:
updated to work with NDB engine
mysql-test/r/rpl_row_trig002.result:
updated to work with NDB engine
mysql-test/t/rpl_temporary.test:
updated to work with NDB engine
mysql-test/r/rpl_temporary.result:
updated to work with NDB engine
mysql-test/extra/rpl_tests/rpl_row_001.test:
updated to work with NDB as default engine
mysql-test/r/rpl_row_001.result:
updated to work with NDB as default engine
mysql-test/t/rpl_row_blob_innodb.test:
Fixed bug in test case
mysql-test/t/rpl_row_blob_innodb-slave.opt:
Added slave option file to ensure correct engine type on slave
mysql-test/r/rpl_row_blob_innodb.result:
Updated results
mysql-test/r/rpl_row_blob_myisam.result:
Updated results
mysql-test/r/rpl_ndb_log.result:
update results file
-rw-r--r-- | mysql-test/extra/rpl_tests/rpl_insert_id.test | 25 | ||||
-rw-r--r-- | mysql-test/extra/rpl_tests/rpl_row_001.test | 4 | ||||
-rw-r--r-- | mysql-test/r/rpl_insert_id.result | 22 | ||||
-rw-r--r-- | mysql-test/r/rpl_ndb_log.result | 10 | ||||
-rw-r--r-- | mysql-test/r/rpl_row_001.result | 18 | ||||
-rw-r--r-- | mysql-test/r/rpl_row_blob_innodb.result | 4 | ||||
-rw-r--r-- | mysql-test/r/rpl_row_blob_myisam.result | 4 | ||||
-rw-r--r-- | mysql-test/r/rpl_row_trig002.result | 14 | ||||
-rw-r--r-- | mysql-test/r/rpl_skip_error.result | 2 | ||||
-rw-r--r-- | mysql-test/r/rpl_sporadic_master.result | 2 | ||||
-rw-r--r-- | mysql-test/r/rpl_temporary.result | 14 | ||||
-rw-r--r-- | mysql-test/t/rpl_row_blob_innodb-slave.opt | 1 | ||||
-rw-r--r-- | mysql-test/t/rpl_row_blob_innodb.test | 2 | ||||
-rw-r--r-- | mysql-test/t/rpl_row_trig002.test | 10 | ||||
-rw-r--r-- | mysql-test/t/rpl_skip_error.test | 5 | ||||
-rw-r--r-- | mysql-test/t/rpl_sporadic_master.test | 5 | ||||
-rw-r--r-- | mysql-test/t/rpl_temporary.test | 19 |
17 files changed, 95 insertions, 66 deletions
diff --git a/mysql-test/extra/rpl_tests/rpl_insert_id.test b/mysql-test/extra/rpl_tests/rpl_insert_id.test index adf8631bea2..69addb16e43 100644 --- a/mysql-test/extra/rpl_tests/rpl_insert_id.test +++ b/mysql-test/extra/rpl_tests/rpl_insert_id.test @@ -1,3 +1,6 @@ +########################################################### +# 2006-02-01: By JBM: Added 1022, ORDER BY and PK for NDB +########################################################### # See if queries that use both auto_increment and LAST_INSERT_ID() # are replicated well @@ -7,16 +10,16 @@ #should work for both SBR and RBR connection master; -create table t1(a int auto_increment, key(a)); -create table t2(b int auto_increment, c int, key(b)); +create table t1(a int auto_increment, PRIMARY key(a)); +create table t2(b int auto_increment, c int, PRIMARY key(b)); insert into t1 values (1),(2),(3); insert into t1 values (null); insert into t2 values (null,last_insert_id()); save_master_pos; connection slave; sync_with_master; -select * from t1; -select * from t2; +select * from t1 ORDER BY a; +select * from t2 ORDER BY b; connection master; #check if multi-line inserts, #which set last_insert_id to the first id inserted, @@ -44,18 +47,18 @@ connection master; drop table t2; drop table t1; -create table t1(a int auto_increment, key(a)); -create table t2(b int auto_increment, c int, key(b)); +create table t1(a int auto_increment, PRIMARY key(a)); +create table t2(b int auto_increment, c int, PRIMARY key(b)); insert into t1 values (10); insert into t1 values (null),(null),(null); insert into t2 values (5,0); -insert into t2 (c) select * from t1; -select * from t2; +insert into t2 (c) select * from t1 ORDER BY a; +select * from t2 ORDER BY b; save_master_pos; connection slave; sync_with_master; -select * from t1; -select * from t2; +select * from t1 ORDER BY a; +select * from t2 ORDER BY b; connection master; drop table t1; drop table t2; @@ -71,7 +74,7 @@ connection master; SET TIMESTAMP=1000000000; CREATE TABLE t1 ( a INT UNIQUE ); SET FOREIGN_KEY_CHECKS=0; ---error 1062 +--error 1022, 1062 INSERT INTO t1 VALUES (1),(1); sync_slave_with_master; diff --git a/mysql-test/extra/rpl_tests/rpl_row_001.test b/mysql-test/extra/rpl_tests/rpl_row_001.test index 2efefb3cd63..44638bdac96 100644 --- a/mysql-test/extra/rpl_tests/rpl_row_001.test +++ b/mysql-test/extra/rpl_tests/rpl_row_001.test @@ -5,7 +5,7 @@ CREATE TABLE t1 (word CHAR(20) NOT NULL); LOAD DATA INFILE '../../std_data/words.dat' INTO TABLE t1; --replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR eval LOAD DATA LOCAL INFILE '$MYSQL_TEST_DIR/std_data/words.dat' INTO TABLE t1; -SELECT * FROM t1 LIMIT 10; +SELECT * FROM t1 ORDER BY word LIMIT 10; # # Test slave with wrong password @@ -30,7 +30,7 @@ sleep 2; CREATE TABLE t3(n INT); INSERT INTO t3 VALUES(1),(2); sync_slave_with_master; -SELECT * FROM t3; +SELECT * FROM t3 ORDER BY n; SELECT SUM(LENGTH(word)) FROM t1; connection master; DROP TABLE t1,t3; diff --git a/mysql-test/r/rpl_insert_id.result b/mysql-test/r/rpl_insert_id.result index 8482f631553..0f772a7d288 100644 --- a/mysql-test/r/rpl_insert_id.result +++ b/mysql-test/r/rpl_insert_id.result @@ -4,18 +4,18 @@ reset master; reset slave; drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9; start slave; -create table t1(a int auto_increment, key(a)); -create table t2(b int auto_increment, c int, key(b)); +create table t1(a int auto_increment, PRIMARY key(a)); +create table t2(b int auto_increment, c int, PRIMARY key(b)); insert into t1 values (1),(2),(3); insert into t1 values (null); insert into t2 values (null,last_insert_id()); -select * from t1; +select * from t1 ORDER BY a; a 1 2 3 4 -select * from t2; +select * from t2 ORDER BY b; b c 1 4 drop table t1; @@ -40,26 +40,26 @@ b c 6 11 drop table t2; drop table t1; -create table t1(a int auto_increment, key(a)); -create table t2(b int auto_increment, c int, key(b)); +create table t1(a int auto_increment, PRIMARY key(a)); +create table t2(b int auto_increment, c int, PRIMARY key(b)); insert into t1 values (10); insert into t1 values (null),(null),(null); insert into t2 values (5,0); -insert into t2 (c) select * from t1; -select * from t2; +insert into t2 (c) select * from t1 ORDER BY a; +select * from t2 ORDER BY b; b c 5 0 6 10 7 11 8 12 9 13 -select * from t1; +select * from t1 ORDER BY a; a 10 11 12 13 -select * from t2; +select * from t2 ORDER BY b; b c 5 0 6 10 @@ -72,4 +72,4 @@ SET TIMESTAMP=1000000000; CREATE TABLE t1 ( a INT UNIQUE ); SET FOREIGN_KEY_CHECKS=0; INSERT INTO t1 VALUES (1),(1); -ERROR 23000: Duplicate entry '1' for key 1 +Got one of the listed errors diff --git a/mysql-test/r/rpl_ndb_log.result b/mysql-test/r/rpl_ndb_log.result index 523495e284f..5238943e725 100644 --- a/mysql-test/r/rpl_ndb_log.result +++ b/mysql-test/r/rpl_ndb_log.result @@ -32,6 +32,8 @@ master-bin.000001 # Query 1 # use `test`; create table t1 (word char(20) not nul master-bin.000001 # Query 1 # BEGIN master-bin.000001 # Table_map 1 # cluster_replication.apply_status master-bin.000001 # Write_rows 1 # +master-bin.000001 # Table_map 1 # test.t1 +master-bin.000001 # Write_rows 1 # master-bin.000001 # Query 1 # COMMIT master-bin.000001 # Query 1 # use `test`; drop table t1 show binlog events from 102 limit 1; @@ -68,6 +70,8 @@ master-bin.000001 # Query 1 # use `test`; create table t1 (word char(20) not nul master-bin.000001 # Query 1 # BEGIN master-bin.000001 # Table_map 1 # cluster_replication.apply_status master-bin.000001 # Write_rows 1 # +master-bin.000001 # Table_map 1 # test.t1 +master-bin.000001 # Write_rows 1 # master-bin.000001 # Query 1 # COMMIT master-bin.000001 # Query 1 # use `test`; drop table t1 master-bin.000001 # Rotate 1 # master-bin.000002;pos=4 @@ -90,12 +94,12 @@ master-bin.000002 # Query 1 # COMMIT master-bin.000002 # Query 1 # use `test`; drop table t1 show binary logs; Log_name File_size -master-bin.000001 1087 +master-bin.000001 1798 master-bin.000002 991 start slave; show binary logs; Log_name File_size -slave-bin.000001 1494 +slave-bin.000001 2205 slave-bin.000002 583 show binlog events in 'slave-bin.000001' from 4; Log_name Pos Event_type Server_id End_log_pos Info @@ -112,6 +116,8 @@ slave-bin.000001 # Query 1 # use `test`; create table t1 (word char(20) not null slave-bin.000001 # Query 2 # BEGIN slave-bin.000001 # Table_map 2 # cluster_replication.apply_status slave-bin.000001 # Write_rows 2 # +slave-bin.000001 # Table_map 2 # test.t1 +slave-bin.000001 # Write_rows 2 # slave-bin.000001 # Query 2 # COMMIT slave-bin.000001 # Query 1 # use `test`; drop table t1 slave-bin.000001 # Query 1 # use `test`; create table t5 (a int)ENGINE=NDB diff --git a/mysql-test/r/rpl_row_001.result b/mysql-test/r/rpl_row_001.result index 990ebbc5d7a..b07a99644fc 100644 --- a/mysql-test/r/rpl_row_001.result +++ b/mysql-test/r/rpl_row_001.result @@ -7,25 +7,25 @@ start slave; CREATE TABLE t1 (word CHAR(20) NOT NULL); LOAD DATA INFILE '../../std_data/words.dat' INTO TABLE t1; LOAD DATA LOCAL INFILE 'MYSQL_TEST_DIR/std_data/words.dat' INTO TABLE t1; -SELECT * FROM t1 LIMIT 10; +SELECT * FROM t1 ORDER BY word LIMIT 10; word Aarhus +Aarhus +Aarhus +Aarhus +Aaron Aaron +Aaron +Aaron +Ababa Ababa -aback -abaft -abandon -abandoned -abandoning -abandonment -abandons STOP SLAVE; SET PASSWORD FOR root@"localhost" = PASSWORD('foo'); START SLAVE; SET PASSWORD FOR root@"localhost" = PASSWORD(''); CREATE TABLE t3(n INT); INSERT INTO t3 VALUES(1),(2); -SELECT * FROM t3; +SELECT * FROM t3 ORDER BY n; n 1 2 diff --git a/mysql-test/r/rpl_row_blob_innodb.result b/mysql-test/r/rpl_row_blob_innodb.result index 92671f10ab9..713ac8bae81 100644 --- a/mysql-test/r/rpl_row_blob_innodb.result +++ b/mysql-test/r/rpl_row_blob_innodb.result @@ -9,7 +9,7 @@ DROP TABLE IF EXISTS test.t2; ***** Table Create Section **** CREATE TABLE test.t1 (c1 int not null auto_increment, -data LONGBLOB, PRIMARY KEY(c1))ENGINE=$engine_type; +data LONGBLOB, PRIMARY KEY(c1))ENGINE=engine_type; **** Data Insert Section test.t1 ***** @@ -76,7 +76,7 @@ c1 INT NOT NULL PRIMARY KEY, c2 TEXT, c3 INT, c4 LONGBLOB, -KEY(c3))ENGINE=$engine_type; +KEY(c3))ENGINE=engine_type; *** Setup Values For test.t2 *** set @x0 = '01234567012345670123456701234567'; diff --git a/mysql-test/r/rpl_row_blob_myisam.result b/mysql-test/r/rpl_row_blob_myisam.result index 92671f10ab9..713ac8bae81 100644 --- a/mysql-test/r/rpl_row_blob_myisam.result +++ b/mysql-test/r/rpl_row_blob_myisam.result @@ -9,7 +9,7 @@ DROP TABLE IF EXISTS test.t2; ***** Table Create Section **** CREATE TABLE test.t1 (c1 int not null auto_increment, -data LONGBLOB, PRIMARY KEY(c1))ENGINE=$engine_type; +data LONGBLOB, PRIMARY KEY(c1))ENGINE=engine_type; **** Data Insert Section test.t1 ***** @@ -76,7 +76,7 @@ c1 INT NOT NULL PRIMARY KEY, c2 TEXT, c3 INT, c4 LONGBLOB, -KEY(c3))ENGINE=$engine_type; +KEY(c3))ENGINE=engine_type; *** Setup Values For test.t2 *** set @x0 = '01234567012345670123456701234567'; diff --git a/mysql-test/r/rpl_row_trig002.result b/mysql-test/r/rpl_row_trig002.result index 62dc2f17562..794104db750 100644 --- a/mysql-test/r/rpl_row_trig002.result +++ b/mysql-test/r/rpl_row_trig002.result @@ -13,14 +13,14 @@ CREATE TABLE test.t3 (value CHAR(30),domain_id INT, mailaccount_id INT, program CREATE TABLE test.t1 (id INT,domain CHAR(30),PRIMARY KEY(id)); CREATE TRIGGER test.t2_ai AFTER INSERT ON test.t2 FOR EACH ROW UPDATE test.t3 ms, test.t1 d SET ms.value='No' WHERE ms.domain_id = (SELECT max(id) FROM test.t1 WHERE domain='example.com') AND ms.mailaccount_id IS NULL AND ms.program='spamfilter' AND ms.keey='scan_incoming'| INSERT INTO test.t1 VALUES (1, 'example.com'),(2, 'mysql.com'),(3, 'earthmotherwear.com'), (4, 'yahoo.com'),(5, 'example.com'); -select * from test.t1; +SELECT * FROM test.t1 ORDER BY id; id domain 1 example.com 2 mysql.com 3 earthmotherwear.com 4 yahoo.com 5 example.com -select * from test.t1; +SELECT * FROM test.t1 ORDER BY id; id domain 1 example.com 2 mysql.com @@ -45,13 +45,19 @@ value domain_id mailaccount_id program keey No 5 NULL spamfilter scan_incoming Yes 1 NULL spamfilter scan_incoming DELETE FROM test.t1 WHERE id = 1; -select * from test.t1; +SELECT * FROM test.t1 ORDER BY id; id domain 2 mysql.com 3 earthmotherwear.com 4 yahoo.com 5 example.com -select * from test.t1; +SELECT * FROM test.t1 ORDER BY id; +id domain +2 mysql.com +3 earthmotherwear.com +4 yahoo.com +5 example.com +SELECT * FROM test.t1 ORDER BY id; id domain 2 mysql.com 3 earthmotherwear.com diff --git a/mysql-test/r/rpl_skip_error.result b/mysql-test/r/rpl_skip_error.result index e52426c381c..c66e73d7c59 100644 --- a/mysql-test/r/rpl_skip_error.result +++ b/mysql-test/r/rpl_skip_error.result @@ -8,7 +8,7 @@ create table t1 (n int not null primary key); insert into t1 values (1); insert into t1 values (1); insert into t1 values (2),(3); -select * from t1; +select * from t1 ORDER BY n; n 1 2 diff --git a/mysql-test/r/rpl_sporadic_master.result b/mysql-test/r/rpl_sporadic_master.result index 789c3bf2b2b..14fb673a081 100644 --- a/mysql-test/r/rpl_sporadic_master.result +++ b/mysql-test/r/rpl_sporadic_master.result @@ -15,7 +15,7 @@ insert into t1 values (NULL),(NULL); flush logs; truncate table t1; insert into t1 values (10),(NULL),(NULL),(NULL),(NULL),(NULL); -select * from t1; +select * from t1 ORDER BY n; n 10 11 diff --git a/mysql-test/r/rpl_temporary.result b/mysql-test/r/rpl_temporary.result index a7dbfd44944..24900fab56a 100644 --- a/mysql-test/r/rpl_temporary.result +++ b/mysql-test/r/rpl_temporary.result @@ -24,15 +24,15 @@ drop table if exists t1,t2; create table t1(f int); create table t2(f int); insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10); -create temporary table t3(f int); +create temporary table t3(f int)ENGINE=MyISAM; insert into t3 select * from t1 where f<6; -create temporary table t3(f int); +create temporary table t3(f int)ENGINE=MyISAM; insert into t2 select count(*) from t3; insert into t3 select * from t1 where f>=4; drop temporary table t3; insert into t2 select count(*) from t3; drop temporary table t3; -select * from t2; +select * from t2 ORDER BY f; f 5 7 @@ -46,13 +46,13 @@ SET TIMESTAMP=1040323938; insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10); SET TIMESTAMP=1040323945; SET @@session.pseudo_thread_id=1; -create temporary table t3(f int); +create temporary table t3(f int)ENGINE=MyISAM; SET TIMESTAMP=1040323952; SET @@session.pseudo_thread_id=1; insert into t3 select * from t1 where f<6; SET TIMESTAMP=1040324145; SET @@session.pseudo_thread_id=2; -create temporary table t3(f int); +create temporary table t3(f int)ENGINE=MyISAM; SET TIMESTAMP=1040324186; SET @@session.pseudo_thread_id=1; insert into t2 select count(*) from t3; @@ -68,9 +68,9 @@ insert into t2 select count(*) from t3; SET TIMESTAMP=1040324224; SET @@session.pseudo_thread_id=2; drop temporary table t3; -select * from t2; +select * from t2 ORDER BY f; f 5 7 drop table t1,t2; -create temporary table t3 (f int); +create temporary table t3 (f int)ENGINE=MyISAM; diff --git a/mysql-test/t/rpl_row_blob_innodb-slave.opt b/mysql-test/t/rpl_row_blob_innodb-slave.opt new file mode 100644 index 00000000000..627becdbfb5 --- /dev/null +++ b/mysql-test/t/rpl_row_blob_innodb-slave.opt @@ -0,0 +1 @@ +--innodb diff --git a/mysql-test/t/rpl_row_blob_innodb.test b/mysql-test/t/rpl_row_blob_innodb.test index b6832010e22..0e43af8c388 100644 --- a/mysql-test/t/rpl_row_blob_innodb.test +++ b/mysql-test/t/rpl_row_blob_innodb.test @@ -2,6 +2,6 @@ # Wrapper for rpl_row_blob.test# ################################# -- source include/have_innodb.inc -let $engine_type=INNODB; +let $engine_type=InnoDB; -- source extra/rpl_tests/rpl_row_blob.test diff --git a/mysql-test/t/rpl_row_trig002.test b/mysql-test/t/rpl_row_trig002.test index 2cd84009b2b..d2a1b6327dd 100644 --- a/mysql-test/t/rpl_row_trig002.test +++ b/mysql-test/t/rpl_row_trig002.test @@ -37,12 +37,12 @@ delimiter ;| INSERT INTO test.t1 VALUES (1, 'example.com'),(2, 'mysql.com'),(3, 'earthmotherwear.com'), (4, 'yahoo.com'),(5, 'example.com'); -select * from test.t1; +SELECT * FROM test.t1 ORDER BY id; #show binlog events; save_master_pos; connection slave; sync_with_master; -select * from test.t1; +SELECT * FROM test.t1 ORDER BY id; connection master; INSERT INTO test.t3 VALUES ('Yes', 5, NULL, 'spamfilter','scan_incoming'); @@ -60,11 +60,13 @@ connection master; DELETE FROM test.t1 WHERE id = 1; -select * from test.t1; +SELECT * FROM test.t1 ORDER BY id; +connection master; +SELECT * FROM test.t1 ORDER BY id; save_master_pos; connection slave; sync_with_master; -select * from test.t1; +SELECT * FROM test.t1 ORDER BY id; connection master; #show binlog events; diff --git a/mysql-test/t/rpl_skip_error.test b/mysql-test/t/rpl_skip_error.test index e0e569a65b7..bfc4a2c2711 100644 --- a/mysql-test/t/rpl_skip_error.test +++ b/mysql-test/t/rpl_skip_error.test @@ -1,3 +1,6 @@ +########################################## +# 2006-02-07 By JBM: Added order by +######################################### source include/master-slave.inc; create table t1 (n int not null primary key); @@ -11,6 +14,6 @@ insert into t1 values (2),(3); save_master_pos; connection slave; sync_with_master; -select * from t1; +select * from t1 ORDER BY n; # End of 4.1 tests diff --git a/mysql-test/t/rpl_sporadic_master.test b/mysql-test/t/rpl_sporadic_master.test index 26b633a1c4f..824f7abc9f5 100644 --- a/mysql-test/t/rpl_sporadic_master.test +++ b/mysql-test/t/rpl_sporadic_master.test @@ -1,3 +1,6 @@ +############################################################# +# 2006-02-07 By JBM added order by +############################################################# # test to see if replication can continue when master sporadically fails on # COM_BINLOG_DUMP and additionally limits the number of events per dump @@ -18,7 +21,7 @@ flush logs; truncate table t1; insert into t1 values (10),(NULL),(NULL),(NULL),(NULL),(NULL); sync_slave_with_master; -select * from t1; +select * from t1 ORDER BY n; connection master; drop table t1,t2; sync_slave_with_master; diff --git a/mysql-test/t/rpl_temporary.test b/mysql-test/t/rpl_temporary.test index 0eb5d4074d8..3cd2357e565 100644 --- a/mysql-test/t/rpl_temporary.test +++ b/mysql-test/t/rpl_temporary.test @@ -1,3 +1,8 @@ +######################################################### +# 2006-02-07 By JBM according to 16552 MyISAM should be used +# As work around for NDB using temp tables. +########################################################## + -- source include/master-slave.inc # Clean up old slave's binlogs. @@ -55,12 +60,12 @@ create table t2(f int); insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10); connection con1; -create temporary table t3(f int); +create temporary table t3(f int)ENGINE=MyISAM; insert into t3 select * from t1 where f<6; sleep 1; connection con2; -create temporary table t3(f int); +create temporary table t3(f int)ENGINE=MyISAM; sleep 1; connection con1; @@ -79,7 +84,7 @@ connection con2; insert into t2 select count(*) from t3; drop temporary table t3; -select * from t2; +select * from t2 ORDER BY f; # Commented out 8/30/2005 to make compatable with both sbr and rbr #--replace_result $VERSION VERSION @@ -98,13 +103,13 @@ insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10); SET TIMESTAMP=1040323945; SET @@session.pseudo_thread_id=1; -create temporary table t3(f int); +create temporary table t3(f int)ENGINE=MyISAM; SET TIMESTAMP=1040323952; SET @@session.pseudo_thread_id=1; insert into t3 select * from t1 where f<6; SET TIMESTAMP=1040324145; SET @@session.pseudo_thread_id=2; -create temporary table t3(f int); +create temporary table t3(f int)ENGINE=MyISAM; SET TIMESTAMP=1040324186; SET @@session.pseudo_thread_id=1; insert into t2 select count(*) from t3; @@ -121,13 +126,13 @@ SET TIMESTAMP=1040324224; SET @@session.pseudo_thread_id=2; drop temporary table t3; -select * from t2; +select * from t2 ORDER BY f; drop table t1,t2; # Create last a temporary table that is not dropped at end to ensure that we # don't get any memory leaks for this -create temporary table t3 (f int); +create temporary table t3 (f int)ENGINE=MyISAM; sync_with_master; # The server will now close done |