1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-09 11:41:36 +03:00
Files
mariadb/mysql-test/r/mysql_proc.result
gluh@gluh.mysql.r18.ru bdac148469 Make the CLI client (client/mysql.cc) work with multi-line SPs.
Make the mysqltest program (client/mysqltest.c) work with multi-line SPs.
2003-01-17 14:48:58 +04:00

23 lines
320 B
Plaintext

drop table if exists t1;
create table t1(a1 char(10));
create procedure a()
begin
insert into t1 values("aa");
insert into t1 values("ab");
end;
create procedure b()
begin
insert into t1 values("ba");
insert into t1 values("bb");
insert into t1 values("cc");
end;
call a();
call b();
select * from t1;
a1
aa
ab
ba
bb
cc