projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7af96a6
)
Avoid package qualification of $windows_os
author
Andrew Dunstan
<
[email protected]
>
Thu, 1 Feb 2024 20:17:41 +0000
(15:17 -0500)
committer
Andrew Dunstan
<
[email protected]
>
Thu, 1 Feb 2024 20:30:54 +0000
(15:30 -0500)
Further fallout from commit
6ee26c6a4b
. To keep code in sync and avoid
issues on older releases with different package names, simply use the
unqualified name like many other places in our code.
src/bin/pg_rewind/t/003_extrafiles.pl
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/pg_rewind/t/003_extrafiles.pl
b/src/bin/pg_rewind/t/003_extrafiles.pl
index ae110a9afd1af3a7fdb406c2174d0850b0503d71..aa4472750a87a18e069053262daf5630e7498947 100644
(file)
--- a/
src/bin/pg_rewind/t/003_extrafiles.pl
+++ b/
src/bin/pg_rewind/t/003_extrafiles.pl
@@
-71,7
+71,7
@@
sub run_test
# File::Find converts backslashes to slashes in the newer Perl
# versions. To support all Perl versions, do the same conversion
# for Windows before comparing the paths.
- if ($
PostgreSQL::Test::Utils::
windows_os)
+ if ($windows_os)
{
for my $filename (@paths)
{