diff options
Diffstat (limited to 'src/bin/psql/print.c')
-rw-r--r-- | src/bin/psql/print.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/bin/psql/print.c b/src/bin/psql/print.c index 156cdf6c653..4676d4b506e 100644 --- a/src/bin/psql/print.c +++ b/src/bin/psql/print.c @@ -922,7 +922,9 @@ printTable(const char *title, if (pager) { output = pager; +#ifndef WIN32 pqsignal(SIGPIPE, SIG_IGN); +#endif } else output = fout; @@ -963,7 +965,10 @@ printTable(const char *title, if (pager) { pclose(pager); +#ifndef WIN32 pqsignal(SIGPIPE, SIG_DFL); +#endif + } } |