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