blob: 14b8ee737764d5fd6c62ce8cfbc1e548d53d223f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Copyright (c) 2022, PostgreSQL Global Development Group
# Allow use of release 15+ Perl package name in older branches, by giving that
# package the same symbol table as the older package. See PostgresNode::new
# for supporting heuristics.
package PostgreSQL::Test::Cluster;
use strict;
use warnings;
use PostgresNode;
BEGIN { *PostgreSQL::Test::Cluster:: = \*PostgresNode::; }
use Exporter 'import';
1;
|