summaryrefslogtreecommitdiff
path: root/mysql-test/r/sp.result
diff options
context:
space:
mode:
authorkostja@bodhi.(none) <>2007-07-16 23:31:36 +0400
committerkostja@bodhi.(none) <>2007-07-16 23:31:36 +0400
commit88fc7cab26425a5dc43aff02cb84e1363ce0129d (patch)
tree53d9d30f94c45fc9b3f51662dd10574784b16e0a /mysql-test/r/sp.result
parent06d656b808c26841007d00512ad91ec0dcbae19f (diff)
parent5466b0df1407b0412a5845e4fd43c4ae0d1ba5b5 (diff)
downloadmariadb-git-88fc7cab26425a5dc43aff02cb84e1363ce0129d.tar.gz
Merge bodhi.(none):/opt/local/work/mysql-5.0-runtime
into bodhi.(none):/opt/local/work/mysql-5.1-runtime
Diffstat (limited to 'mysql-test/r/sp.result')
-rw-r--r--mysql-test/r/sp.result25
1 files changed, 25 insertions, 0 deletions
diff --git a/mysql-test/r/sp.result b/mysql-test/r/sp.result
index 8e63f66e544..9c98dc8d027 100644
--- a/mysql-test/r/sp.result
+++ b/mysql-test/r/sp.result
@@ -5659,6 +5659,31 @@ t3_id_1 t3_id_2 t4_id
DROP PROCEDURE p1|
DROP VIEW v1, v2|
DROP TABLE t3, t4|
+drop database if exists mysqltest_db1;
+create database mysqltest_db1;
+create procedure mysqltest_db1.sp_bug28551() begin end;
+call mysqltest_db1.sp_bug28551();
+show warnings;
+Level Code Message
+drop database mysqltest_db1;
+drop database if exists mysqltest_db1;
+drop table if exists test.t1;
+create database mysqltest_db1;
+use mysqltest_db1;
+drop database mysqltest_db1;
+create table test.t1 (id int);
+insert into test.t1 (id) values (1);
+create procedure test.sp_bug29050() begin select * from t1; end//
+show warnings;
+Level Code Message
+call test.sp_bug29050();
+id
+1
+show warnings;
+Level Code Message
+use test;
+drop procedure sp_bug29050;
+drop table t1;
End of 5.0 tests
Begin of 5.1 tests
drop function if exists pi;