Re: Effective limit on size of text type?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Effective limit on size of text type?
Дата
Msg-id 28712.1028773802@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Effective limit on size of text type?  (eric soroos <eric-psql@soroos.net>)
Ответы Re: Effective limit on size of text type?  (eric soroos <eric-psql@soroos.net>)
Список pgsql-novice
eric soroos <eric-psql@soroos.net> writes:
> test=# select _incomingEnclosures from dl_event where _idNum=3010;
> Takes at least a couple of minutes, either through psql or a libpq based connection.
> test=# select char_length(_incomingEnclosures) from dl_event where _donorNum=804 and _responseNum=3010;
> -[ RECORD 1 ]-------
> char_length | 952478
> Is nearly immediate.

Given that those queries aren't using comparable WHERE conditions, I'd
wonder about the query plan myself, not the size of the returned data
item.  Do you have an index on _idNum?  Is it getting used?

In a quick test here, selecting a 1MB text value into a file, using

regression=# select f1 from foo
regression-# \g tmpfile

took about a tenth of a second...

            regards, tom lane

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: MemoryContextAlloc: invalid request size 1969649011
Следующее
От: "sdeel"
Дата:
Сообщение: Re: Permissions problem on new install