View Single Post

   
  #3 (permalink)  
Old 04-20-2008, 02:49 PM
Bryce Nesbitt
 
Posts: n/a
Default Re: Proposed patch - psql wraps at window width

1) "\pset columns XX" should make it clear that's for file output only.

2) There's an extra space, which breaks \pset border 2

717c717
< fputc(' ', fout);;
---
> fputc(' ', fout);

842c842
< fputs(" | ", fout);
---
> fputs(" |", f


2) With \pset border 2, the far left border, for symmetry, should work
like the middle borders.

3) I'm getting bolder: how about having \pset format wrapped as the
default? Any downsides?




--
Sent via pgsql-patches mailing list (pgsql-patches@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-patches

Reply With Quote