Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
23fa7987
Commit
23fa7987
authored
Jun 16, 2004
by
paul@kite-hub.kitebird.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
variables.result, sp-error.result:
fix up test result.
parent
877d44da
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
mysql-test/r/sp-error.result
mysql-test/r/sp-error.result
+6
-6
mysql-test/r/variables.result
mysql-test/r/variables.result
+1
-1
No files found.
mysql-test/r/sp-error.result
View file @
23fa7987
...
...
@@ -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
...
...
mysql-test/r/variables.result
View file @
23fa7987
...
...
@@ -364,7 +364,7 @@ set sql_log_bin=1;
set sql_log_off=1;
set sql_log_update=1;
Warnings:
Note 1308 The update log is deprecated and replaced by the binary log
. SET SQL_LOG_UPDATE has been ignored.
Note 1308 The update log is deprecated and replaced by the binary log
; SET SQL_LOG_UPDATE has been ignored
set sql_low_priority_updates=1;
set sql_max_join_size=200;
select @@sql_max_join_size,@@max_join_size;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment