Re: Difference between varchar and text?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Difference between varchar and text?
Дата
Msg-id 23648.1353223796@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Difference between varchar and text?  (David Johnston <polobo@yahoo.com>)
Ответы Re: Difference between varchar and text?  (Abel Abraham Camarillo Ojeda <acamari@the00z.org>)
Re: Difference between varchar and text?  (Vick Khera <vivek@khera.org>)
Список pgsql-general
David Johnston <polobo@yahoo.com> writes:
> On Nov 17, 2012, at 20:43, John R Pierce <pierce@hogranch.com> wrote:
>> I think he meant a tiny tiny bit faster, primarily due to not having to validate the length.

> Maybe... But I would presume a "varchar with no limit" does not validate length...

There is overhead from the type system for varchar, whether or not it
has a length limit --- you'll get at least some RelabelType nodes in
expression trees, and those don't have zero cost to execute.

I'd generally recommend using "text" if you don't have any interest in
enforcing a specific length limit.

            regards, tom lane


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: [BUGS] Prepared Statement Name Truncation
Следующее
От: Abel Abraham Camarillo Ojeda
Дата:
Сообщение: Re: Difference between varchar and text?