pgsql: Tweak TOAST code so that columns marked with MAIN storage

From: tgl(at)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Tweak TOAST code so that columns marked with MAIN storage
Date: 2009-07-22 01:21:22
Message-ID: 20090722012122.5F9E275331E@cvs.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers pgsql-hackers

Log Message:
-----------
Tweak TOAST code so that columns marked with MAIN storage strategy are
not forced out-of-line unless that is necessary to make the row fit on a
page. Previously, they were forced out-of-line if needed to get the row
down to the default target size (1/4th page).

Kevin Grittner

Modified Files:
--------------
pgsql/doc/src/sgml:
storage.sgml (r1.29 -> r1.30)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/storage.sgml?r1=1.29&r2=1.30)
pgsql/src/backend/access/heap:
tuptoaster.c (r1.93 -> r1.94)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/heap/tuptoaster.c?r1=1.93&r2=1.94)
pgsql/src/include/access:
tuptoaster.h (r1.43 -> r1.44)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/access/tuptoaster.h?r1=1.43&r2=1.44)

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Joe Conway 2009-07-22 02:31:38 pgsql: Replace PLpgSQL_dstring by StringInfo.
Previous Message Tom Lane 2009-07-21 21:46:10 pgsql: Make pg_dump/pg_restore --clean options drop large objects too.

Browse pgsql-hackers by date

  From Date Subject
Next Message Robert Haas 2009-07-22 01:21:50 Re: generic explain options v3
Previous Message Andrew Dunstan 2009-07-22 01:10:33 Re: revised hstore patch