pears.safetime

Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace.

Original SQL

COMMENT TO PRESERVE FORMAT ON PROCEDURE "pears"."safetime" IS 
{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
}