1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-09 11:41:36 +03:00
Files
mariadb/mysql-test/t/mysql_proc.test
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

22 lines
366 B
Plaintext

--disable_warnings
drop table if exists t1;
--enable_warnings
create table t1(a1 char(10));
delimiter |;
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|
delimiter ;|
call a();
call b();
select * from t1;