mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
Merged from gca-branch (bug 43111)
This commit is contained in:
commit
1e503ee440
2 changed files with 9 additions and 2 deletions
|
@ -235,7 +235,7 @@ execute stmt1;
|
|||
prepare stmt1 from "insert into t1 select i from t1";
|
||||
execute stmt1;
|
||||
execute stmt1;
|
||||
prepare stmt1 from "select * from t1 into outfile 'f1.txt'";
|
||||
prepare stmt1 from "select * from t1 into outfile '<MYSQLTEST_VARDIR>/tmp/f1.txt'";
|
||||
execute stmt1;
|
||||
deallocate prepare stmt1;
|
||||
drop table t1;
|
||||
|
|
|
@ -230,6 +230,10 @@ drop table t1;
|
|||
# statements or are correctly created and deleted on each execute
|
||||
#
|
||||
|
||||
--let $outfile=$MYSQLTEST_VARDIR/tmp/f1.txt
|
||||
--error 0,1
|
||||
--remove_file $outfile
|
||||
|
||||
prepare stmt1 from "select 1 into @var";
|
||||
execute stmt1;
|
||||
execute stmt1;
|
||||
|
@ -240,11 +244,14 @@ execute stmt1;
|
|||
prepare stmt1 from "insert into t1 select i from t1";
|
||||
execute stmt1;
|
||||
execute stmt1;
|
||||
prepare stmt1 from "select * from t1 into outfile 'f1.txt'";
|
||||
--replace_result $MYSQLTEST_VARDIR <MYSQLTEST_VARDIR>
|
||||
eval prepare stmt1 from "select * from t1 into outfile '$outfile'";
|
||||
execute stmt1;
|
||||
deallocate prepare stmt1;
|
||||
drop table t1;
|
||||
|
||||
--remove_file $outfile
|
||||
|
||||
#
|
||||
# BUG#5242 "Prepared statement names are case sensitive"
|
||||
#
|
||||
|
|
Loading…
Add table
Reference in a new issue