diff --git a/src/test/modules/test_misc/t/012_ddlutils.pl b/src/test/modules/test_misc/t/012_ddlutils.pl index b11d4777ccc..a0e21c69fb5 100644 --- a/src/test/modules/test_misc/t/012_ddlutils.pl +++ b/src/test/modules/test_misc/t/012_ddlutils.pl @@ -15,6 +15,9 @@ use Test::More; 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