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();