Thread: pgsql/src/include/utils (builtins.h)

pgsql/src/include/utils (builtins.h)

From
Tom Lane
Date:
  Date: Friday, August 25, 2000 @ 14:05:53
Author: tgl

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

Modified Files:
    builtins.h

-----------------------------  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.