diff options
author | mats@kindahl-laptop.dnsalias.net <> | 2007-05-27 22:20:01 +0200 |
---|---|---|
committer | mats@kindahl-laptop.dnsalias.net <> | 2007-05-27 22:20:01 +0200 |
commit | 2aab5fef61569e95e4ee67775564fbca84a0b9ba (patch) | |
tree | 7ab7c24d87e01106a68f8723f38ec1d2fb8bb8a2 /mysql-test/r/check.result | |
parent | 6a7925a262bbe4ab37a90a952330b3b411bc2df5 (diff) | |
download | mariadb-git-2aab5fef61569e95e4ee67775564fbca84a0b9ba.tar.gz |
WL#3339 (Issue warnings when statement-based replication may fail):
Fixing case where a false warning could be printed in mixed mode.
Also fixing some test cases that generated different result files as
a consequence of the patch.
Diffstat (limited to 'mysql-test/r/check.result')
-rw-r--r-- | mysql-test/r/check.result | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/r/check.result b/mysql-test/r/check.result index 60806e7393e..739eab2ed76 100644 --- a/mysql-test/r/check.result +++ b/mysql-test/r/check.result @@ -1,4 +1,5 @@ -drop table if exists t1; +drop table if exists t1,t2; +drop view if exists v1; create table t1(n int not null, key(n), key(n), key(n), key(n)); check table t1 extended; insert into t1 values (200000); |