summaryrefslogtreecommitdiffstats
path: root/src/test/perl/PostgreSQL/Test/Utils.pm
blob: 2d15bbf21d7e06867148ceffce2849e67daba7ce (plain)
1
2
3
4
5
6
7
8
9
10
11
# 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.

use strict;
use warnings;
BEGIN { *PostgreSQL::Test::Utils:: = \*TestLib::; }
use TestLib ();

1;