All Downloads are FREE. Search and download functionalities are using the official Maven repository.

db.migration.V33__fix_AQL_time_retrieval.sql Maven / Gradle / Ivy

There is a newer version: 0.32.0
Show newest version
-- ensures that date/time handling is the same for time with or without timezone
CREATE OR REPLACE FUNCTION ehr.js_dv_date_time(datetime TIMESTAMP, timezone TEXT)
    RETURNS JSON AS
$$
BEGIN
    RETURN ehr.js_dv_date_time(datetime::TIMESTAMPTZ, timezone);
END
$$
LANGUAGE plpgsql;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy