2006-01-25 16:14:27 +01:00
|
|
|
|
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;
|
|
|
|
|
**** Test case for BUG#16487 ****
|
|
|
|
|
**** Master ****
|
|
|
|
|
CREATE TABLE test.t4 (a int);
|
|
|
|
|
CREATE TABLE test.t1 (a int);
|
|
|
|
|
UPDATE test.t4 NATURAL JOIN test.t1 SET t1.a=5;
|
|
|
|
|
**** Slave ****
|
|
|
|
|
SELECT * FROM t4;
|
|
|
|
|
a
|
|
|
|
|
DROP TABLE t1;
|
|
|
|
|
DROP TABLE t4;
|
2006-11-01 12:30:01 +04:00
|
|
|
|
DROP TABLE IF EXISTS t5;
|
|
|
|
|
CREATE TABLE t5 (
|
|
|
|
|
word varchar(50) collate utf8_unicode_ci NOT NULL default ''
|
|
|
|
|
) DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|
|
|
|
|
SET @@session.character_set_client=33,@@session.collation_connection=192;
|
|
|
|
|
CREATE TEMPORARY TABLE tmptbl504451f4258$1 (id INT NOT NULL) ENGINE=MEMORY;
|
|
|
|
|
INSERT INTO t5 (word) VALUES ('TEST’');
|
|
|
|
|
SELECT HEX(word) FROM t5;
|
|
|
|
|
HEX(word)
|
|
|
|
|
54455354E28099
|
|
|
|
|
SELECT HEX(word) FROM t5;
|
|
|
|
|
HEX(word)
|
|
|
|
|
54455354E28099
|
|
|
|
|
SELECT * FROM tmptbl504451f4258$1;
|
|
|
|
|
ERROR 42S02: Table 'test.tmptbl504451f4258$1' doesn't exist
|
|
|
|
|
DROP TABLE t5;
|