diff options
author | unknown <pem@mysql.comhem.se> | 2003-12-01 18:24:09 +0100 |
---|---|---|
committer | unknown <pem@mysql.comhem.se> | 2003-12-01 18:24:09 +0100 |
commit | da7ca9ba04364f61a712102f8c7095ba7d182bf5 (patch) | |
tree | b726e4d966f0f53b2e8c810e3a57cf44e87c7f77 /mysql-test/r/sp-error.result | |
parent | 38f853d291075a8eaa9d408a23626b09aa7ac1d2 (diff) | |
download | mariadb-git-da7ca9ba04364f61a712102f8c7095ba7d182bf5.tar.gz |
Post-merge fixes.
Diffstat (limited to 'mysql-test/r/sp-error.result')
-rw-r--r-- | mysql-test/r/sp-error.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/sp-error.result b/mysql-test/r/sp-error.result index 5f755592452..a1ac2a85b6e 100644 --- a/mysql-test/r/sp-error.result +++ b/mysql-test/r/sp-error.result @@ -35,7 +35,7 @@ call foo(); ERROR 42000: PROCEDURE foo does not exist drop procedure if exists foo; Warnings: -Warning 1286 PROCEDURE foo does not exist +Warning 1287 PROCEDURE foo does not exist show create procedure foo; ERROR 42000: PROCEDURE foo does not exist create procedure foo() @@ -71,7 +71,7 @@ declare y int; set x = y; end; Warnings: -Warning 1292 Referring to uninitialized variable y +Warning 1293 Referring to uninitialized variable y drop procedure foo; create procedure foo() begin |