1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Merge mysql.com:/usr/local/bk/mysql-5.0

into mysql.com:/home/pem/work/mysql-5.0
This commit is contained in:
unknown
2003-11-24 18:26:52 +01:00
27 changed files with 29 additions and 29 deletions

View File

@ -79,7 +79,7 @@ select name from mysql.proc;
select type from mysql.proc;
end;
call foo();
ERROR 04000: SELECT in a stored procedure must have INTO
ERROR 0A000: SELECT in a stored procedure must have INTO
drop procedure foo;
create procedure foo()
return 42;
@ -90,7 +90,7 @@ declare x int;
select max(c) into x from test.t;
return x;
end;
ERROR 04000: Queries, like SELECT, INSERT, UPDATE (and others), are not allowed in a FUNCTION
ERROR 0A000: Statements like SELECT, INSERT, UPDATE (and others) are not allowed in a FUNCTION
create procedure p(x int)
insert into test.t1 values (x);
create function f(x int) returns int