Re: TOAST not working

From: Angus Berry <angus(dot)berry(at)elkenserve(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: TOAST not working
Date: 2006-06-11 02:43:02
Message-ID: 1149993782.15368.62.camel@vaio1linux
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-docs pgsql-general

Ahhh... thank you. This clarifies TOAST for me. I see how TOAST applies
to individual columns that exceed the 8k page size.

Postgres specs state it's possible to have 2GB rows and up to 1,600
columns. Can you tell me what data type would get to fill this spec. I
wouldn't normally push to this limit, but I am expecting to have to
defend Postgres specs. to a 3rd party.

Questions like this also help me get to grips with Postgres internals.

thanks... Angus

On Sat, 2006-06-10 at 17:10 -0400, Christopher Browne wrote:
> Centuries ago, Nostradamus foresaw when listman(at)elkenserver(dot)net (list_man) would write:
> > Can someone tell me if I have to 'enable' TOAST on columns to have it
> > kick in. According to my research, numeric data types are toastable.
>
> TOAST is only used on individual columns that exceed 8K in size.
>
> The only way you'll be TOASTing numeric columns is if they are
> individually defined to occupy > 8192 bytes.
>
> Those are *BIG* numeric values; perhaps you're misunderstanding the
> intent of TOAST...

In response to

Responses

Browse pgsql-docs by date

  From Date Subject
Next Message Tom Lane 2006-06-11 02:58:49 Re: [GENERAL] TOAST not working
Previous Message Jim C. Nasby 2006-06-11 02:12:15 Re: [GENERAL] TOAST not working

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2006-06-11 02:58:49 Re: [GENERAL] TOAST not working
Previous Message Jim C. Nasby 2006-06-11 02:14:40 Re: are there static variables in pgsql?