Maximum size of the primary key

Started by Nonameabout 23 years ago2 messagesgeneral
Jump to latest
#1Noname
jaanush@hot.ee

Hi!

I'm an absolute beginner to PostgreSQL and
there's probably stupid questions coming up
more than just this one:

Is there a limit to the bytesize of the
primary key? (I'm migrating from MySQL
and there it was only 255). I couldn't find
this in the documentation at first glance.

Jass

#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: Noname (#1)
Re: Maximum size of the primary key

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