diff options
author | unknown <paul@kite-hub.kitebird.com> | 2004-06-16 00:46:26 -0500 |
---|---|---|
committer | unknown <paul@kite-hub.kitebird.com> | 2004-06-16 00:46:26 -0500 |
commit | fa7f615afb845be3a7fcd3aa8ef31338017c0712 (patch) | |
tree | 646930952cb579955b893c150c2ef4dbe8d35953 /mysql-test/r/sp-error.result | |
parent | fe2211b6c939d4ef693cd9a023f81526b372c446 (diff) | |
download | mariadb-git-fa7f615afb845be3a7fcd3aa8ef31338017c0712.tar.gz |
variables.result, sp-error.result:
fix up test result.
mysql-test/r/sp-error.result:
fix up test result.
mysql-test/r/variables.result:
fix up test result.
Diffstat (limited to 'mysql-test/r/sp-error.result')
-rw-r--r-- | mysql-test/r/sp-error.result | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mysql-test/r/sp-error.result b/mysql-test/r/sp-error.result index 8d92765d1dd..59cd93d6e7b 100644 --- a/mysql-test/r/sp-error.result +++ b/mysql-test/r/sp-error.result @@ -97,13 +97,13 @@ insert into test.t1 values (x)| create function f(x int) returns int return x+42| call p()| -ERROR 42000: Wrong number of arguments for PROCEDURE p, expected 1, got 0 +ERROR 42000: Incorrect number of arguments for PROCEDURE p; expected 1, got 0 call p(1, 2)| -ERROR 42000: Wrong number of arguments for PROCEDURE p, expected 1, got 2 +ERROR 42000: Incorrect number of arguments for PROCEDURE p; expected 1, got 2 select f()| -ERROR 42000: Wrong number of arguments for FUNCTION f, expected 1, got 0 +ERROR 42000: Incorrect number of arguments for FUNCTION f; expected 1, got 0 select f(1, 2)| -ERROR 42000: Wrong number of arguments for FUNCTION f, expected 1, got 2 +ERROR 42000: Incorrect number of arguments for FUNCTION f; expected 1, got 2 drop procedure p| drop function f| create procedure p(val int, out res int) @@ -219,7 +219,7 @@ fetch c into x; close c; end| call p()| -ERROR HY000: Wrong number of FETCH variables +ERROR HY000: Incorrect number of FETCH variables drop procedure p| create procedure p() begin @@ -232,7 +232,7 @@ fetch c into x, y, z; close c; end| call p()| -ERROR HY000: Wrong number of FETCH variables +ERROR HY000: Incorrect number of FETCH variables drop procedure p| create procedure p(in x int, x char(10)) begin |