Re: Proposed patch - psql wraps at window width

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: Proposed patch - psql wraps at window width
Дата
Msg-id 20080421155925.GS6520@alvh.no-ip.org
обсуждение исходный текст
Ответ на Re: Proposed patch - psql wraps at window width  (Bruce Momjian <bruce@momjian.us>)
Ответы Re: Proposed patch - psql wraps at window width
Re: Proposed patch - psql wraps at window width
Список pgsql-patches
Bruce Momjian wrote:

> !                     /* print a divider, middle columns only */
> !                     if ((j + 1) % col_count)
>                       {
> !                         if (opt_border == 0)
> !                             fputc(' ', fout);
> !                         /* first line for values? */
> !                         else if (line_count == 0 && col_line_count == 0)
> !                             fputs(" | ", fout);
> !                         /* next value is beyond height? */
> !                         else if (line_count >= heights[j + 1])
> !                             fputs("   ", fout);
> !                         /* start of another newline string? */
> !                         else if (col_line_count == 0)
> !                             fputs(" : ", fout);
> !                         else
> !                         {
> !                             /* Does the next column wrap to this line? */
> !                             struct lineptr *this_line = &col_lineptrs[j+1][line_count];
> !                             bool    string_done = *(this_line->ptr + bytes_output[j+1]) == 0;
> !
> !                             fputs(string_done ? "   " : " ; ", fout);
> !                         }
>                       }

I think it's a bad idea to use the same " : " separator in the two last
cases.  They are different and they should be displayed differently.

--
Alvaro Herrera                                http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support

В списке pgsql-patches по дате отправления:

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: float4/float8/int64 passed by value with tsearchfixup
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: Proposed patch - psql wraps at window width