blob: 12339c23de19db703ae941e2708928893f6d4c35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Copyright (c) 2022, PostgreSQL Global Development Group
# allow use of release 15+ perl namespace in older branches
# just 'use' the older module name.
# See PostgresNode.pm for function implementations
package PostgreSQL::Test::Cluster;
use strict;
use warnings;
use PostgresNode;
1;
|