diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2015-10-12 19:49:22 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2015-10-12 19:49:22 -0400 |
commit | c6ab511c224f8775c0d392f8811c0a0a34758b3a (patch) | |
tree | 6523f64701a796513e471ced167ad1f76ff87636 | |
parent | 34557f5448e04366e7b64a402c0dd33decb6c346 (diff) | |
download | postgresql-c6ab511c224f8775c0d392f8811c0a0a34758b3a.tar.gz postgresql-c6ab511c224f8775c0d392f8811c0a0a34758b3a.zip |
Sigh, need "use Config" as well.
This time with some manual testing behind it ...
-rw-r--r-- | src/test/perl/TestLib.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/perl/TestLib.pm b/src/test/perl/TestLib.pm index 2e04476052e..d249ebe24d5 100644 --- a/src/test/perl/TestLib.pm +++ b/src/test/perl/TestLib.pm @@ -3,6 +3,7 @@ package TestLib; use strict; use warnings; +use Config; use Exporter 'import'; our @EXPORT = qw( tempdir |