Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit bbbf71d

Browse files
committed
Fix 002_pg_upgrade.pl.
Commit f696c0c caused a test failure in 002_pg_upgrade.pl, because an earlier s/// operator caused qr// to no longer match the empty string. Use qr/^$/ instead, which is a better test anyway, because we expect the stderr to be empty. Initially this appeared to be a perl bug, but per discussion, it seems that it was a misunderstanding of how perl works: an empty pattern uses the last successful pattern. Given how surprising that behavior is to perl non-experts, we will need to look for similar problems elsewhere and eliminate the use of empty patterns throughout the code. For now, address this one instance to fix the buildfarm. Discussion: https://postgr.es/m/0ef325fa06e7a1605c4e119c4ecb637c67e5fb4e.camel@j-davis.com Reviewed-by: Tom Lane
1 parent 319e9e5 commit bbbf71d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/pg_upgrade/t/002_pg_upgrade.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ sub filter_dump
377377
],
378378
1,
379379
[qr/invalid/], # pg_upgrade prints errors on stdout :(
380-
[qr//],
380+
[qr/^$/],
381381
'invalid database causes failure');
382382
rmtree($newnode->data_dir . "/pg_upgrade_output.d");
383383

0 commit comments

Comments
 (0)