Re: explain output infelicity in psql

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: explain output infelicity in psql
Дата
Msg-id 28920.1260469140@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: explain output infelicity in psql  (Andrew Dunstan <andrew@dunslane.net>)
Ответы Re: explain output infelicity in psql  (Andrew Dunstan <andrew@dunslane.net>)
Список pgsql-hackers
Andrew Dunstan <andrew@dunslane.net> writes:
> Tom Lane wrote:
>> So you can tell a newline in the data from a wrap due to line length.
>> The need to be able to do that is not dependent on how many columns
>> there are.

> If that's really what we want then I think we're doing a terrible job of 
> it. Have a look at the output of:

>     select
>     E'xxxxxxx\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
>     as a, 1 as b;

> How do we know from that where the linefeeds are, exactly?

It works quite nicely for me ... in HEAD that is:

regression=# select
E'xxxxxxx\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'  as a, 1 as b;
                   a                           | b 
 
------------------------------------------------------+---xxxxxxx                                             +|
1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx                 +| xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx | 
 
(1 row)

regression=# 

The point here is exactly that previous versions didn't show the
distinction well.
        regards, tom lane


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

Предыдущее
От: Andrew Dunstan
Дата:
Сообщение: Re: explain output infelicity in psql
Следующее
От: Josh Berkus
Дата:
Сообщение: Re: Need --without-docs build switch