diff options
author | unknown <msvensson@shellback.(none)> | 2006-07-26 12:40:26 +0200 |
---|---|---|
committer | unknown <msvensson@shellback.(none)> | 2006-07-26 12:40:26 +0200 |
commit | 8bf8776cd6d7d9a8410250118937214c68d9dafd (patch) | |
tree | 77abca7b2deadc45846e687421ca9b604f0b3a5e /mysql-test/t/sp-error.test | |
parent | 8e12b66bd047719b0d36f9352747b43c05ca6206 (diff) | |
download | mariadb-git-8bf8776cd6d7d9a8410250118937214c68d9dafd.tar.gz |
Bug#21039 Transaction cache not flushed after SELECT CREATE
- Add prelocking for stored procedures that uses sp or sf
- Update test result for sp_error(reported as bug#21294)
- Make note about new error message from sp-error(bug#17244)
mysql-test/r/sp-error.result:
Update test result(reported as bug#21294)
mysql-test/r/sp_notembedded.result:
Update test result after disabling test case
mysql-test/t/sp-error.test:
Add note about the faulty error message
mysql-test/t/sp_notembedded.test:
Disable test case until bug#17244 has been fixed
sql/sp.cc:
Add prelocking for all stored procedures that uses another sp or sf
sql/sp.h:
Add prelocking for all stored procedures that uses another sp or sf
sql/sql_base.cc:
Add prelocking for all stored procedures that uses another sp or sf
Diffstat (limited to 'mysql-test/t/sp-error.test')
-rw-r--r-- | mysql-test/t/sp-error.test | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/t/sp-error.test b/mysql-test/t/sp-error.test index 24b0d4674c5..d370cb3037c 100644 --- a/mysql-test/t/sp-error.test +++ b/mysql-test/t/sp-error.test @@ -1075,6 +1075,10 @@ execute stmt; drop function bug11834_1; # Attempt to execute statement should return proper error and # should not crash server. + +# NOTE! The error we get from the below query indicates that the sp bug11834_2 +# does not exist(this is wrong but can be accepted) +# This behaviour has been reported as bug#21294 --error ER_SP_DOES_NOT_EXIST execute stmt; deallocate prepare stmt; |