1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

MDEV-6980 OUT parameters in PREPARE

revert the patch for "out parameters in prepare"
This commit is contained in:
Sergei Golubchik
2014-11-27 09:45:10 +01:00
parent 717a264ef4
commit 0438f12540
16 changed files with 10 additions and 370 deletions

View File

@ -256,14 +256,9 @@ execute stmt1 using @my_key ;
execute full_info ;
--disable_metadata
# the next statement does not fail anymore
# the next statement must fail
--error 1064
prepare stmt1 from "select c1 into ? from t9 where c1= 1" ;
execute stmt1 using @result;
--enable_metadata
execute full_info ;
--disable_metadata
select @result;