diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2022-08-07 10:19:40 +0200 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2022-08-07 10:19:40 +0200 |
commit | afe58c8b746cac1e2c3e9f0fc96a0f69a46c84d3 (patch) | |
tree | c100a6007f10cae1afbeb28a554c471462706cd1 | |
parent | cbf4403134738245db48b306c62eb1258f2b2bd0 (diff) | |
download | postgresql-afe58c8b746cac1e2c3e9f0fc96a0f69a46c84d3.tar.gz postgresql-afe58c8b746cac1e2c3e9f0fc96a0f69a46c84d3.zip |
Remove unportable use of timezone in recent test
Per buildfarm member snapper
Discussion: https://postgr.es/m/129951.1659812518@sss.pgh.pa.us
-rw-r--r-- | src/test/modules/brin/t/02_wal_consistency.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/modules/brin/t/02_wal_consistency.pl b/src/test/modules/brin/t/02_wal_consistency.pl index cc465bc0dfb..f7dbb0d0141 100644 --- a/src/test/modules/brin/t/02_wal_consistency.pl +++ b/src/test/modules/brin/t/02_wal_consistency.pl @@ -46,7 +46,7 @@ $whiskey->safe_psql( do $$ declare - current timestamp with time zone := '2019-03-27 08:14:01.123456789 America/Punta_Arenas'; + current timestamp with time zone := '2019-03-27 08:14:01.123456789 UTC'; begin loop insert into tbl_timestamp0 select i from |