mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Bug#36721 - Test funcs1.<engine>_func_view failing for multiple engines
Bug#36724 - Test funcs_1.<engine>_storedproc_02 needs to be updated Bug#36726 - Test funcs_1.<engine>_storedproc failing - Needs to be updated on 5.1+ func_view bug: re-records .result files to account for addition of charset and collation data to SHOW CREATE VIEW output storedproc bugs: Added expected errors for those storedprocs that use SQLSTATE:00000 in their handlers. re-recorded .result files to account for these expected errors. mysql-test/suite/funcs_1/r/innodb_func_view.result: Update result set for changes to SHOW CREATE VIEW output mysql-test/suite/funcs_1/r/memory_func_view.result: Updated result set due to changes in SHOW CREATE VIEW output mysql-test/suite/funcs_1/r/myisam_func_view.result: Updated result set due to changes in SHOW CREATE VIEW output
This commit is contained in:
@ -808,7 +808,8 @@ delimiter ;//
|
||||
|
||||
CALL h1();
|
||||
|
||||
|
||||
--echo This will fail, SQLSTATE 00000 is not allowed
|
||||
--ERROR ER_SP_BAD_SQLSTATE
|
||||
delimiter //;
|
||||
CREATE PROCEDURE sp1()
|
||||
begin1_label:BEGIN
|
||||
@ -823,12 +824,16 @@ CREATE PROCEDURE sp1()
|
||||
END begin1_label//
|
||||
delimiter ;//
|
||||
|
||||
--echo Verify SP wasn't created
|
||||
--ERROR ER_SP_DOES_NOT_EXIST
|
||||
CALL sp1();
|
||||
|
||||
# cleanup 3.1.2.45+50
|
||||
DROP PROCEDURE p1;
|
||||
DROP PROCEDURE h1;
|
||||
DROP PROCEDURE sp1;
|
||||
--disable_warnings
|
||||
DROP PROCEDURE IF EXISTS sp1;
|
||||
--enable_warnings
|
||||
DROP TABLE res_t1;
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user