Обсуждение: pgsql/src/backend/commands (command.c)

Поиск
Список
Период
Сортировка

pgsql/src/backend/commands (command.c)

От
Tom Lane
Дата:
  Date: Friday, August 25, 2000 @ 14:05:54
Author: tgl

Update of /home/projects/pgsql/cvsroot/pgsql/src/backend/commands
     from hub.org:/home/projects/pgsql/tmp/cvs-serv18507/src/backend/commands

Modified Files:
    command.c

-----------------------------  Log Message  -----------------------------

Avoid creating a TOAST table if we can prove that the maximum tuple
length is < TOAST_TUPLE_THRESHOLD, even with toastable column types
present.  For example, CREATE TABLE foo (f1 int, f2 varchar(100))
does not require a toast table, even though varchar is a toastable
type.