semi-stupid question (index on OID)

Started by Alex Pilosovalmost 25 years ago2 messagesgeneral
Jump to latest
#1Alex Pilosov
alex@pilosoft.com

Hi,

I though that searches on a table based on oid should be very fast (select
* from table where oid=####), however, this doesn't appear to be the case.

My assumption was that essentially, if there is no clustering on the
table, it is physically ordered by OID. Is that correct? Or vacuum may
rearrange tuples without regard of their order? (...how does vacuum cope
with clustered tables then?)

-alex

#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: Alex Pilosov (#1)
Re: semi-stupid question (index on OID)

Alex Pilosov <alex@pilosoft.com> writes:

I though that searches on a table based on oid should be very fast (select
* from table where oid=####), however, this doesn't appear to be the case.

Not unless you create an index on OID.

My assumption was that essentially, if there is no clustering on the
table, it is physically ordered by OID. Is that correct?

No, OID has little or nothing to do with physical location.

regards, tom lane