diff options
author | kostja@bodhi.(none) <> | 2007-11-02 14:47:18 +0300 |
---|---|---|
committer | kostja@bodhi.(none) <> | 2007-11-02 14:47:18 +0300 |
commit | b9550052455de9ffa43f44c920d5b8e30979f70a (patch) | |
tree | ba575eb312bd9f395973af78137b8ab43b0b67fa /mysql-test/r | |
parent | a0f55d11f68ac9b168a7e9234171d64270693dc8 (diff) | |
download | mariadb-git-b9550052455de9ffa43f44c920d5b8e30979f70a.tar.gz |
Cleanup the test case for Bug#32030 "DELETE does not return an error and
deletes rows if error evaluating WHERE"
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/ps.result | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/mysql-test/r/ps.result b/mysql-test/r/ps.result index db9f0613d7f..9d0906ad5e7 100644 --- a/mysql-test/r/ps.result +++ b/mysql-test/r/ps.result @@ -2681,9 +2681,6 @@ t1 CREATE TABLE `t1` ( ) ENGINE=MyISAM DEFAULT CHARSET=latin1 drop table t1; drop table if exists t1, t2; -Warnings: -Note 1051 Unknown table 't1' -Note 1051 Unknown table 't2' create table t1 (a int, b int); create table t2 like t1; insert into t1 (a, b) values (1,1), (1,2), (1,3), (1,4), (1,5), |