diff options
author | unknown <kostja@bodhi.local> | 2006-12-12 01:50:12 +0300 |
---|---|---|
committer | unknown <kostja@bodhi.local> | 2006-12-12 01:50:12 +0300 |
commit | a8103a89b4ad39031abd1db242beca1b4332c895 (patch) | |
tree | 13f5570546702b83046f58c43a391f93191f3d5a /mysql-test/r/sp.result | |
parent | 3e3990433a0c8ec7cea01274909fdb17024519e8 (diff) | |
download | mariadb-git-a8103a89b4ad39031abd1db242beca1b4332c895.tar.gz |
Post-merge fixes for Bug#4968 "Stored procedure crash if cursor opened
on altered table" and Bug#19733 "Repeated alter, or repeated
create/drop, fails"
mysql-test/r/ps.result:
Post-merge fixes: update results with new tests.
mysql-test/r/sp.result:
Post-merge fixes: update results.
mysql-test/t/ps.test:
Add more test cases for Bug#4968 and related.
mysql-test/t/sp.test:
A post-merge fix: add more testcases for Bug#4968 and related.
sql/sql_insert.cc:
Post-merge fixes: update comments, fix errors of the manual merge.
sql/sql_lex.cc:
Fix a manual merge error.
sql/sql_parse.cc:
Fix a few errors of the manual merge, style.
sql/sql_table.cc:
Post-merge fixes, fix a few errors of the manual merge, fix style.
sql/sql_yacc.yy:
A post-merge fix.
Diffstat (limited to 'mysql-test/r/sp.result')
-rw-r--r-- | mysql-test/r/sp.result | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/mysql-test/r/sp.result b/mysql-test/r/sp.result index 1bb4b3a405b..50ffe55ec02 100644 --- a/mysql-test/r/sp.result +++ b/mysql-test/r/sp.result @@ -5626,5 +5626,22 @@ Called B Called B drop procedure proc_21462_a| drop procedure proc_21462_b| +drop table if exists t3| +drop procedure if exists proc_bug19733| +create table t3 (s1 int)| +create procedure proc_bug19733() +begin +declare v int default 0; +while v < 100 do +create index i on t3 (s1); +drop index i on t3; +set v = v + 1; +end while; +end| +call proc_bug19733()| +call proc_bug19733()| +call proc_bug19733()| +drop procedure proc_bug19733| +drop table t3| End of 5.0 tests drop table t1,t2; |