Re: varchar vs. text

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: varchar vs. text
Дата
Msg-id 8493.1063859240@sss.pgh.pa.us
обсуждение исходный текст
Ответ на varchar vs. text  (Michael Garriss <mgarriss@earthlink.net>)
Ответы Re: varchar vs. text  (Michael Garriss <mgarriss@earthlink.net>)
Список pgsql-general
Michael Garriss <mgarriss@earthlink.net> writes:
> I curious about the benefits of a varchar over text.

1. Compliance to the letter of the SQL spec.
2. Ability to define a maximum length, if you happen to feel the need to
   impose a specific maximum length.  (If you don't have a good reason
   to impose any particular max length, this is a minus not a plus,
   because the spec says you have to pick one anyway.)

> Is it speed,

It's a loser on speed because of the extra cycles spent to check the
max length.  Other than those cycles, there is no difference.

            regards, tom lane

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

Предыдущее
От: Ron Johnson
Дата:
Сообщение: Re: High-volume shop uses PostgreSQL
Следующее
От: Michael Garriss
Дата:
Сообщение: Re: varchar vs. text