Cleanup the test case for Bug#32030 "DELETE does not return an error and
deletes rows if error evaluating WHERE" mysql-test/r/ps.result: Disable warnings. mysql-test/t/ps.test: Disable warnings.
This commit is contained in:
parent
bc8e5574ae
commit
6a79a2196f
@ -2681,9 +2681,6 @@ t1 CREATE TABLE `t1` (
|
|||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
||||||
drop table t1;
|
drop table t1;
|
||||||
drop table if exists t1, t2;
|
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 t1 (a int, b int);
|
||||||
create table t2 like t1;
|
create table t2 like t1;
|
||||||
insert into t1 (a, b) values (1,1), (1,2), (1,3), (1,4), (1,5),
|
insert into t1 (a, b) values (1,1), (1,2), (1,3), (1,4), (1,5),
|
||||||
|
@ -2785,8 +2785,9 @@ drop table t1;
|
|||||||
# Test that there is an error for prepared delete just like for the normal
|
# Test that there is an error for prepared delete just like for the normal
|
||||||
# one.
|
# one.
|
||||||
#
|
#
|
||||||
|
--disable_warnings
|
||||||
drop table if exists t1, t2;
|
drop table if exists t1, t2;
|
||||||
|
--enable_warnings
|
||||||
create table t1 (a int, b int);
|
create table t1 (a int, b int);
|
||||||
create table t2 like t1;
|
create table t2 like t1;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user