blob: 1e2fb50d6da84bd037f28c51b733b5fa4ba2fa4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# 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;
|