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 | 3aafd5da7dad4b9e8a02751d75be7865a5683ca3 (patch) | |
tree | 4f6e3a0d82c3e109a85bf52140b73346cccf3be2 | |
parent | 782e5631e5ddb8c2777a8cb26ac51437b787cd70 (diff) | |
download | postgresql-3aafd5da7dad4b9e8a02751d75be7865a5683ca3.tar.gz postgresql-3aafd5da7dad4b9e8a02751d75be7865a5683ca3.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 47e8be28960..41d920a66c3 100644 --- a/src/test/modules/brin/t/02_wal_consistency.pl +++ b/src/test/modules/brin/t/02_wal_consistency.pl @@ -44,7 +44,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 |