diff options
Diffstat (limited to 'mysql-test/t/sp.test')
-rw-r--r-- | mysql-test/t/sp.test | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/mysql-test/t/sp.test b/mysql-test/t/sp.test index 326518902d7..38753ed3ac0 100644 --- a/mysql-test/t/sp.test +++ b/mysql-test/t/sp.test @@ -1763,11 +1763,11 @@ insert into t3 (a) values (1)| create procedure h_ee() deterministic begin - declare continue handler for 1579 -- ER_DUP_ENTRY_WITH_KEY_NAME + declare continue handler for 1582 -- ER_DUP_ENTRY_WITH_KEY_NAME select 'Outer (bad)' as 'h_ee'; begin - declare continue handler for 1579 -- ER_DUP_ENTRY_WITH_KEY_NAME + declare continue handler for 1582 -- ER_DUP_ENTRY_WITH_KEY_NAME select 'Inner (good)' as 'h_ee'; insert into t3 values (1); @@ -1777,7 +1777,7 @@ end| create procedure h_es() deterministic begin - declare continue handler for 1579 -- ER_DUP_ENTRY_WITH_KEY_NAME + declare continue handler for 1582 -- ER_DUP_ENTRY_WITH_KEY_NAME select 'Outer (good)' as 'h_es'; begin @@ -1823,7 +1823,7 @@ end| create procedure h_ex() deterministic begin - declare continue handler for 1579 -- ER_DUP_ENTRY_WITH_KEY_NAME + declare continue handler for 1582 -- ER_DUP_ENTRY_WITH_KEY_NAME select 'Outer (good)' as 'h_ex'; begin @@ -1842,7 +1842,7 @@ begin select 'Outer (bad)' as 'h_se'; begin - declare continue handler for 1579 -- ER_DUP_ENTRY_WITH_KEY_NAME + declare continue handler for 1582 -- ER_DUP_ENTRY_WITH_KEY_NAME select 'Inner (good)' as 'h_se'; insert into t3 values (1); @@ -2015,7 +2015,7 @@ begin select 'Outer (bad)' as 'h_xe'; begin - declare continue handler for 1579 -- ER_DUP_ENTRY_WITH_KEY_NAME + declare continue handler for 1582 -- ER_DUP_ENTRY_WITH_KEY_NAME select 'Inner (good)' as 'h_xe'; insert into t3 values (1); @@ -5528,11 +5528,11 @@ insert into t3 values (1)| create procedure bug15011() deterministic begin - declare continue handler for 1579 + declare continue handler for 1582 select 'Outer' as 'Handler'; begin - declare continue handler for 1579 + declare continue handler for 1582 select 'Inner' as 'Handler'; insert into t3 values (1); |