pears.safetime
Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace.
Original SQL
CREATE FUNCTION "pears"."safetime"( IN "stime" CHAR(5) ) RETURNS TIME BEGIN DECLARE "rv" TIME; SET "rv" = "stime"; RETURN("rv") exception WHEN others THEN RETURN('00:00') END