mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MDEV-16708: fixed issue with handling of the directive --enable-prepared-warnings in mysqltest
This commit is contained in:
committed by
Sergei Golubchik
parent
fc71746a6a
commit
b126c3f3fa
@ -251,6 +251,7 @@ DROP TABLE t1;
|
||||
create or replace table t1 (a int, b int invisible);
|
||||
insert into t1 values (1),(2);
|
||||
|
||||
--enable_prepare_warnings
|
||||
select * from t1 into outfile 'f';
|
||||
load data infile 'f' into table t1;
|
||||
select a,b from t1;
|
||||
@ -277,5 +278,6 @@ drop table t1;
|
||||
--echo #
|
||||
create table t1 (a int, b int invisible);
|
||||
insert delayed into t1 values (1);
|
||||
--disable_prepare_warnings
|
||||
# cleanup
|
||||
drop table t1;
|
||||
|
Reference in New Issue
Block a user