forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit8046465
committed
Fix pg_basebackup output to stdout on Windows.
When writing a backup to stdout with pg_basebackup on Windows, put stdoutto binary mode. Any CR bytes in the output will otherwise be outputincorrectly as CR+LF.In the passing, standardize on using "_setmode" instead of "setmode", forthe sake of consistency. They both do the same thing, but according toMSDN documentation, setmode is deprecated.Fixes bug #14634, reported by Henry Boehlert. Patch by Haribabu Kommi.Backpatch to all supported versions.Discussion:https://www.postgresql.org/message-id/20170428082818.24366.13134@wrigleys.postgresql.org1 parenta3ca72a commit8046465
File tree
2 files changed
+6
-2
lines changed- src/bin
- pg_basebackup
- pg_dump
2 files changed
+6
-2
lines changedLines changed: 4 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
954 | 954 |
| |
955 | 955 |
| |
956 | 956 |
| |
| 957 | + | |
| 958 | + | |
| 959 | + | |
| 960 | + | |
957 | 961 |
| |
958 | 962 |
| |
959 | 963 |
| |
|
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2346 | 2346 |
| |
2347 | 2347 |
| |
2348 | 2348 |
| |
2349 |
| - | |
| 2349 | + | |
2350 | 2350 |
| |
2351 |
| - | |
| 2351 | + | |
2352 | 2352 |
| |
2353 | 2353 |
| |
2354 | 2354 |
| |
|
0 commit comments
Comments
(0)