blob: 8875c6a7c309b7e730795358c8d685827615c82d [file] [log] [blame]
CREATE PROCEDURE set_message(IN name STRING, OUT result STRING)
BEGIN
DECLARE str STRING DEFAULT 'Hello, ' || name || '!';
Work: begin
declare continue handler for sqlexception begin
set result = null;
print 'error';
end;
set result = str;
end;
END;
DECLARE str STRING;
CALL set_message('world', str);
PRINT str;