Re: [HACKERS] User control over psql error stream

2012-12-07 Thread Karl O. Pinc
On 11/21/2012 11:33:18 PM, Karl O. Pinc wrote: > On 11/21/2012 01:41:56 PM, Peter Eisentraut wrote: > > On 11/15/12 3:53 PM, Karl O. Pinc wrote: > > > This patch gives the end user control over psql's > > > error stream. This allows a single psql session > > > to use \o to send both errors and tab

Re: [HACKERS] User control over psql error stream

2012-11-21 Thread Karl O. Pinc
On 11/21/2012 01:41:56 PM, Peter Eisentraut wrote: > On 11/15/12 3:53 PM, Karl O. Pinc wrote: > > This patch gives the end user control over psql's > > error stream. This allows a single psql session > > to use \o to send both errors and table output > > to multiple files. Useful when capturing t

Re: [HACKERS] User control over psql error stream

2012-11-21 Thread Karl O. Pinc
On 11/21/2012 01:41:56 PM, Peter Eisentraut wrote: > On 11/15/12 3:53 PM, Karl O. Pinc wrote: > > This patch gives the end user control over psql's > > error stream. This allows a single psql session > > to use \o to send both errors and table output > > to multiple files. Useful when capturing t

Re: [HACKERS] User control over psql error stream

2012-11-21 Thread Peter Eisentraut
On 11/15/12 3:53 PM, Karl O. Pinc wrote: > This patch gives the end user control over psql's > error stream. This allows a single psql session > to use \o to send both errors and table output > to multiple files. Useful when capturing test output, etc. What does this do that cannot in practice b

[HACKERS] User control over psql error stream

2012-11-15 Thread Karl O. Pinc
Hi, This patch gives the end user control over psql's error stream. This allows a single psql session to use \o to send both errors and table output to multiple files. Useful when capturing test output, etc. Control is provided via a new "estream" \pset. Here's the docs. -