Re: ALTER TABLE .. < ADD | DROP > OIDS

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: ALTER TABLE .. < ADD | DROP > OIDS
Дата
Msg-id 12609.1039205944@sss.pgh.pa.us
обсуждение исходный текст
Ответ на ALTER TABLE .. < ADD | DROP > OIDS  (Rod Taylor <rbt@rbt.ca>)
Ответы Re: ALTER TABLE .. < ADD | DROP > OIDS  (Rod Taylor <rbt@rbt.ca>)
Список pgsql-performance
Rod Taylor <rbt@rbt.ca> writes:
> I wish to create an alter command which will allow a table to have OIDs
> added or removed.

> The tricky part appears to be changing the tuples themselves.

Are you sure you need to?  Methinks the lazy approach of letting them
auto-adjust on next UPDATE should work as well for OIDs as for user
columns.

There might be a few places that look at the pg_class.relhasoids
field where they should be examining the tuple header has-oid bit,
but I don't think there are many.

            regards, tom lane

В списке pgsql-performance по дате отправления:

Предыдущее
От: "Josh Berkus"
Дата:
Сообщение: Re: ORDER BY ... LIMIT.. performance
Следующее
От: Rod Taylor
Дата:
Сообщение: Re: ALTER TABLE .. < ADD | DROP > OIDS