Files
oceanbase/unittest/pl/test_pl.sql
wangzelin.wzl 93a1074b0c patch 4.0
2022-10-24 17:57:12 +08:00

10 lines
110 B
SQL

create procedure p(x bigint)
begin
declare i bigint default 1;
if(i=1)
then
select 42 from dual;
end if;
end