forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit0150616
committed
(Blind) fix Perl splitting of strings at newlines
I forgot that Windows represents newlines as \r\n, so splitting a stringat /\s/ creates additional empty strings. Let's rewrite that as /\s+/to see if that avoids those. (There's precedent for using that patternon Windows in other scripts.)Previously:91bdf49,8ed428d,650b967.Per buildfarm, via Tom Lane.Discussion:https://postgr.es/m/3144460.1615860259@sss.pgh.pa.us1 parent15639d5 commit0150616
1 file changed
+1
-1
lines changedLines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
16 | 16 |
| |
17 | 17 |
| |
18 | 18 |
| |
19 |
| - | |
| 19 | + | |
20 | 20 |
| |
21 | 21 |
| |
22 | 22 |
| |
|
0 commit comments
Comments
(0)