Sign in
apache
/
hive
/
refs/heads/HiveAggregateReduceFunctionsRule
/
.
/
hplsql
/
src
/
test
/
queries
/
local
/
create_procedure4.sql
blob: ec584feec85b583db4261aef0cf34f5a5ebf0f23 [
file
] [
log
] [
blame
]
CREATE
PROCEDURE
test1
()
AS
ret string
DEFAULT
'Initial value'
;
BEGIN
print
(
ret
);
ret
:=
'VALUE IS SET'
;
print
(
ret
);
END
;
test1
();