The tests introduced in
c529ee38b9e are timezone sensitive.
Pin the cluster's timezone to UTC at init time so timestamptz output
is deterministic regardless of the host's local timezone.
my $node = PostgreSQL::Test::Cluster->new('main');
$node->init;
+# Force UTC so that timestamptz values (e.g. VALID UNTIL) render the same
+# way regardless of the host's local timezone.
+$node->append_conf('postgresql.conf', "timezone = 'UTC'\n");
$node->start;
# Perl helper that strips locale/collation details from DDL output so