Re: Maximum size of the primary key - Mailing list pgsql-general

From Tom Lane
Subject Re: Maximum size of the primary key
Date
Msg-id 11291.1045258957@sss.pgh.pa.us
Whole thread Raw
In response to Maximum size of the primary key  (jaanush@hot.ee (Jass))
List pgsql-general
jaanush@hot.ee (Jass) writes:
> Is there a limit to the bytesize of the
> primary key? (I'm migrating from MySQL
> and there it was only 255).

btree index entries (primary key or not) are limited to 1/3 page, or
about 2700 bytes in a standard installation.  In the case of
compressible types like text or varchar, compression can be applied
first, so you'd probably find you could get away with field widths
up to 4k or so.  If you have entries wider than that, I'd begin to
question whether an index on the field really makes sense ...

            regards, tom lane

pgsql-general by date:

Previous
From: Dennis Gearon
Date:
Subject: Re: operators and bit field
Next
From: greg@turnstep.com
Date:
Subject: Re: Broken idocs?