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 | 1626590f2eb655ab13a6291f6ed6215376a1e90a (patch) | |
tree | 0cf1bbfd6d7603380e50031c2f2ced969d854a05 | |
parent | 8c5d9ccca9670e8d7eda35e08b35e4e16bcf600c (diff) | |
download | postgresql-1626590f2eb655ab13a6291f6ed6215376a1e90a.tar.gz postgresql-1626590f2eb655ab13a6291f6ed6215376a1e90a.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 |