
There is only one constructor now for PostgresNode, with the idiomatic name 'new'. The method is not exported by the class, and must be called as "PostgresNode->new('name',[args])". All the TAP tests that use PostgresNode are modified accordingly. Third party scripts will need adjusting, which is a fairly mechanical process (I just used a sed script).
23 lines
455 B
Perl
23 lines
455 B
Perl
|
|
# Copyright (c) 2021, PostgreSQL Global Development Group
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use PostgresNode;
|
|
use TestLib;
|
|
use Test::More tests => 2;
|
|
|
|
my $node = PostgresNode->new('main');
|
|
$node->init;
|
|
$node->start;
|
|
|
|
# clusterdb -a is not compatible with -d, hence enforce environment variable
|
|
# correctly.
|
|
$ENV{PGDATABASE} = 'postgres';
|
|
|
|
$node->issues_sql_like(
|
|
[ 'clusterdb', '-a' ],
|
|
qr/statement: CLUSTER.*statement: CLUSTER/s,
|
|
'cluster all databases');
|