Commit 6d5f7d1c authored by unknown's avatar unknown

Changing some proc names to a more suitable one.

parent 69047e71
...@@ -124,7 +124,7 @@ insert into test.t1 values ("h1", x); ...@@ -124,7 +124,7 @@ insert into test.t1 values ("h1", x);
else else
insert into test.t1 values ("h?", x); insert into test.t1 values ("h?", x);
end case; end case;
create procedure sinisa() create procedure into_test()
begin begin
declare x char(16); declare x char(16);
declare y int; declare y int;
...@@ -245,7 +245,7 @@ id data ...@@ -245,7 +245,7 @@ id data
h0 0 h0 0
h1 1 h1 1
h? 17 h? 17
call sinisa(); call into_test();
select * from t1; select * from t1;
id data id data
h0 0 h0 0
...@@ -274,5 +274,5 @@ drop procedure e; ...@@ -274,5 +274,5 @@ drop procedure e;
drop procedure f; drop procedure f;
drop procedure g; drop procedure g;
drop procedure h; drop procedure h;
drop procedure sinisa; drop procedure into_test;
drop table t1; drop table t1;
...@@ -187,7 +187,7 @@ else ...@@ -187,7 +187,7 @@ else
insert into test.t1 values ("h?", x); insert into test.t1 values ("h?", x);
end case| end case|
create procedure sinisa() create procedure into_test()
begin begin
declare x char(16); declare x char(16);
declare y int; declare y int;
...@@ -273,7 +273,7 @@ call h(0); ...@@ -273,7 +273,7 @@ call h(0);
call h(1); call h(1);
call h(17); call h(17);
select * from t1; select * from t1;
call sinisa(); call into_test();
select * from t1; select * from t1;
delete from t1; delete from t1;
...@@ -298,6 +298,6 @@ drop procedure e; ...@@ -298,6 +298,6 @@ drop procedure e;
drop procedure f; drop procedure f;
drop procedure g; drop procedure g;
drop procedure h; drop procedure h;
drop procedure sinisa; drop procedure into_test;
drop table t1; drop table t1;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment