pgsql/src/backend/commands (command.c) - Mailing list pgsql-committers

From Tom Lane
Subject pgsql/src/backend/commands (command.c)
Date
Msg-id 200008040416.e744G6u71990@hub.org
Whole thread Raw
List pgsql-committers
  Date: Friday, August  4, 2000 @ 00:16:06
Author: tgl

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

Modified Files:
    command.c

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

Fix tuptoaster bugs induced by making bytea toastable.  Durn thing was
trying to toast tuples inserted into toast tables!  Fix is two-pronged:
first, ensure all columns of a toast table are marked attstorage='p',
and second, alter the target chunk size so that it's less than the
threshold for trying to toast a tuple.  (Code tried to do that but the
expression was wrong.)  A few cosmetic cleanups in tuptoaster too.
NOTE: initdb forced due to change in toaster chunk-size.

pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql/src/include/utils (builtins.h inet.h)
Next
From: Tom Lane
Date:
Subject: pgsql/src/backend/access/heap (heapam.c tuptoaster.c)