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 | f4beef1c2d66cdbfd036117a8cbf9a703d83d33e (patch) | |
tree | 4d04306b50f3f4aa953d84eb914a3a07749012ea /src | |
parent | 9d5c96d9be6476c4a7a3fa227e6e20748f1d827f (diff) | |
download | postgresql-f4beef1c2d66cdbfd036117a8cbf9a703d83d33e.tar.gz postgresql-f4beef1c2d66cdbfd036117a8cbf9a703d83d33e.zip |
Remove unportable use of timezone in recent test
Per buildfarm member snapper
Discussion: https://postgr.es/m/129951.1659812518@sss.pgh.pa.us
Diffstat (limited to 'src')
-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 |