\o /dev/null \ir include/create_single_db.sql \o -- Utility function for grouping/slotting time with a given interval. CREATE OR REPLACE FUNCTION date_group( field timestamp, group_interval interval ) RETURNS timestamp LANGUAGE SQL STABLE AS $BODY$ SELECT to_timestamp((EXTRACT(EPOCH from $1)::int / EXTRACT(EPOCH from group_interval)::int) * EXTRACT(EPOCH from group_interval)::int)::timestamp; $BODY$; CREATE TABLE PUBLIC."testNs" ( "timeCustom" TIMESTAMP NOT NULL, device_id TEXT NOT NULL, series_0 DOUBLE PRECISION NULL, series_1 DOUBLE PRECISION NULL, series_2 DOUBLE PRECISION NULL, series_bool BOOLEAN NULL ); CREATE INDEX ON PUBLIC."testNs" (device_id, "timeCustom" DESC NULLS LAST) WHERE device_id IS NOT NULL; SELECT * FROM create_hypertable('"public"."testNs"', 'timeCustom', 'device_id', 2, associated_schema_name=>'testNs' ); \c single INSERT INTO PUBLIC."testNs"("timeCustom", device_id, series_0, series_1) VALUES ('2009-11-12T01:00:00+00:00', 'dev1', 1.5, 1), ('2009-11-12T01:00:00+00:00', 'dev1', 1.5, 2), ('2009-11-10T23:00:02+00:00', 'dev1', 2.5, 3); SELECT _timescaledb_meta_api.close_chunk_end_immediate(c.id) FROM get_open_partition_for_key((SELECT id FROM _timescaledb_catalog.hypertable WHERE table_name = 'testNs'), 'dev1') part INNER JOIN _timescaledb_catalog.chunk c ON (c.partition_id = part.id); INSERT INTO PUBLIC."testNs"("timeCustom", device_id, series_0, series_1) VALUES ('2009-11-10T23:00:00+00:00', 'dev2', 1.5, 1), ('2009-11-10T23:00:00+00:00', 'dev2', 1.5, 2); SELECT * FROM PUBLIC."testNs"; SET client_min_messages = WARNING; \echo 'The next 2 queries will differ in output between UTC and EST since the mod is on the 100th hour UTC' SET timezone = 'UTC'; SELECT date_group("timeCustom", '100 days') AS time, sum(series_0) FROM PUBLIC."testNs" GROUP BY time ORDER BY time ASC; SET timezone = 'EST'; SELECT date_group("timeCustom", '100 days') AS time, sum(series_0) FROM PUBLIC."testNs" GROUP BY time ORDER BY time ASC; \echo 'The rest of the queries will be the same in output between UTC and EST' --have to set the timezones on both Test1 and test2. Have to also kill ongoing dblinks as their sessions cache the timezone setting. SET timezone = 'UTC'; ALTER DATABASE single SET timezone ='UTC'; SELECT dblink_disconnect(conn) FROM unnest(dblink_get_connections()) conn; SELECT date_group("timeCustom", '1 day') AS time, sum(series_0) FROM PUBLIC."testNs" GROUP BY time ORDER BY time ASC; SET timezone = 'EST'; ALTER DATABASE single SET timezone ='EST'; SELECT dblink_disconnect(conn) FROM unnest(dblink_get_connections()) conn; SELECT date_group("timeCustom", '1 day') AS time, sum(series_0) FROM PUBLIC."testNs" GROUP BY time ORDER BY time ASC; SET timezone = 'UTC'; ALTER DATABASE single SET timezone ='UTC'; SELECT dblink_disconnect(conn) FROM unnest(dblink_get_connections()) conn; SELECT * FROM PUBLIC."testNs" WHERE "timeCustom" >= TIMESTAMP '2009-11-10T23:00:00' AND "timeCustom" < TIMESTAMP '2009-11-12T01:00:00' ORDER BY "timeCustom" DESC; SET timezone = 'EST'; ALTER DATABASE single SET timezone ='EST'; SELECT dblink_disconnect(conn) FROM unnest(dblink_get_connections()) conn; SELECT * FROM PUBLIC."testNs" WHERE "timeCustom" >= TIMESTAMP '2009-11-10T23:00:00' AND "timeCustom" < TIMESTAMP '2009-11-12T01:00:00' ORDER BY "timeCustom" DESC; SET timezone = 'UTC'; ALTER DATABASE single SET timezone ='UTC'; SELECT dblink_disconnect(conn) FROM unnest(dblink_get_connections()) conn; SELECT date_group("timeCustom", '1 day') AS time, sum(series_0) FROM PUBLIC."testNs" GROUP BY time ORDER BY time ASC LIMIT 2; SET timezone = 'EST'; ALTER DATABASE single SET timezone ='EST'; SELECT dblink_disconnect(conn) FROM unnest(dblink_get_connections()) conn; SELECT date_group("timeCustom", '1 day') AS time, sum(series_0) FROM PUBLIC."testNs" GROUP BY time ORDER BY time ASC LIMIT 2; ------------------------------------ -- Test time conversion functions -- ------------------------------------ \set ON_ERROR_STOP 0 SET timezone = 'UTC'; ALTER DATABASE single SET timezone ='UTC'; -- Conversion to timestamp using Postgres built-in function taking double SELECT to_timestamp(1486480176.236538); -- extension-specific version taking microsecond UNIX timestamp SELECT _timescaledb_internal.to_timestamp(1486480176236538); -- Should be the inverse of the statement above. SELECT _timescaledb_internal.to_unix_microseconds('2017-02-07 15:09:36.236538+00'); -- In UNIX microseconds, BIGINT MAX is smaller than internal date upper bound -- and should therefore be OK. Further, converting to the internal postgres -- epoch cannot overflow a 64-bit INTEGER since the postgres epoch is at a -- later date compared to the UNIX epoch, and is therefore represented by a -- smaller number SELECT _timescaledb_internal.to_timestamp(9223372036854775807); -- Julian day zero is -210866803200000000 microseconds from UNIX epoch SELECT _timescaledb_internal.to_timestamp(-210866803200000000); \set VERBOSITY default -- Going beyond Julian day zero should give out-of-range error SELECT _timescaledb_internal.to_timestamp(-210866803200000001); -- Lower bound on date (should return the Julian day zero UNIX timestamp above) SELECT _timescaledb_internal.to_unix_microseconds('4714-11-24 00:00:00+00 BC'); -- Going beyond lower bound on date should return out-of-range SELECT _timescaledb_internal.to_unix_microseconds('4714-11-23 23:59:59.999999+00 BC'); -- The upper bound for Postgres TIMESTAMPTZ SELECT timestamp '294276-12-31 23:59:59.999999+00'; -- Going beyond the upper bound, should fail SELECT timestamp '294276-12-31 23:59:59.999999+00' + interval '1 us'; -- Cannot represent the upper bound timestamp with a UNIX microsecond timestamp -- since the Postgres epoch is at a later date than the UNIX epoch. SELECT _timescaledb_internal.to_unix_microseconds('294276-12-31 23:59:59.999999+00'); -- Subtracting the difference between the two epochs (10957 days) should bring -- us within range. SELECT timestamp '294276-12-31 23:59:59.999999+00' - interval '10957 days'; SELECT _timescaledb_internal.to_unix_microseconds('294247-01-01 23:59:59.999999'); -- Adding one microsecond should take us out-of-range again SELECT timestamp '294247-01-01 23:59:59.999999' + interval '1 us'; SELECT _timescaledb_internal.to_unix_microseconds(timestamp '294247-01-01 23:59:59.999999' + interval '1 us');