LOAD 'pg_diffix'; CREATE TABLE test_datetime ( id INTEGER, d DATE, t TIME, ts TIMESTAMP WITHOUT TIME ZONE, tz TIMESTAMP WITH TIME ZONE, i INTERVAL ); INSERT INTO test_datetime VALUES (1, '2012-05-14', '14:59', '2012-05-14', '2012-05-14', '1 years'), (2, '2012-05-14', '14:59', '2012-05-14', '2012-05-14', '1 years'), (3, '2012-05-14', '14:59', '2012-05-14', '2012-05-14', '1 years'), (4, '2012-05-14', '14:59', '2012-05-14', '2012-05-14', '1 years'), (5, '2012-05-14', '14:59', '2012-05-14', '2012-05-14', '1 years'), (6, '2012-05-14', '14:59', '2012-05-14', '2012-05-14', '1 years'), (7, '2012-05-14', '14:59', '2012-05-14', '2012-05-14', '1 years'); CALL diffix.mark_personal('test_datetime', 'id'); SET ROLE diffix_test; SET pg_diffix.session_access_level = 'anonymized_trusted'; ---------------------------------------------------------------- -- Sanity checks ---------------------------------------------------------------- SELECT diffix.access_level(); access_level -------------------- anonymized_trusted (1 row) ---------------------------------------------------------------- -- Seeding ---------------------------------------------------------------- -- Datetime values are seeded the same regardless of global `datestyle` setting SET datestyle = 'SQL'; SELECT ts, count(*) FROM test_datetime GROUP BY 1; ts | count ---------------------+------- 05/14/2012 00:00:00 | 9 (1 row) SET datestyle = 'ISO'; SELECT ts, count(*) FROM test_datetime GROUP BY 1; ts | count ---------------------+------- 2012-05-14 00:00:00 | 9 (1 row)