diff options
author | unknown <Li-Bing.Song@sun.com> | 2009-09-07 13:42:54 +0800 |
---|---|---|
committer | unknown <Li-Bing.Song@sun.com> | 2009-09-07 13:42:54 +0800 |
commit | 12a38fc65e4d99cd6f99d9aa32e7635fe6167620 (patch) | |
tree | 40b0da91080e324f6b13d3fddcfef6daf55e998b /mysql-test/r/mysqlbinlog-cp932.result | |
parent | 5210d5a9a6bb30d1158ea0b0de934f7dddde854c (diff) | |
download | mariadb-git-12a38fc65e4d99cd6f99d9aa32e7635fe6167620.tar.gz |
Bug#46010 main.ctype_gbk_binlog fails sporadically : Table 't2' already exists
This test case uses mysqlbinlog to dump the content of master-bin.000001,
but the content of master-bin.000001 is not that this test needs.
MTR runs a lot of test cases on one server, so when this test starts, the current binlog file
might not be master-bin.000001, or there are other events are written by tests before.
'RESET MASTER' command must be called at the begin, it ensures that binlog of this test
is wrote to master-bin.000001 correctly.
Three other tests have the same problem, They were fixed together.
mysqlbinlog-cp932
binlog_incident
binlog_tmp_table
Diffstat (limited to 'mysql-test/r/mysqlbinlog-cp932.result')
-rw-r--r-- | mysql-test/r/mysqlbinlog-cp932.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/mysqlbinlog-cp932.result b/mysql-test/r/mysqlbinlog-cp932.result index 1640a3b1642..cbf6159516a 100644 --- a/mysql-test/r/mysqlbinlog-cp932.result +++ b/mysql-test/r/mysqlbinlog-cp932.result @@ -1,4 +1,4 @@ -flush logs; +RESET MASTER; create table t3 (f text character set utf8); create table t4 (f text character set cp932); flush logs; |