Re: Advisory Lock BIGINT Values

Поиск
Список
Период
Сортировка
От David E. Wheeler
Тема Re: Advisory Lock BIGINT Values
Дата
Msg-id 1B123936-19A4-470E-B403-D135B409C3C5@justatheory.com
обсуждение исходный текст
Ответ на Re: Advisory Lock BIGINT Values  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
On Aug 27, 2012, at 8:56 PM, Tom Lane wrote:

> This formula is not actually correct, as you'd soon find out if you
> experimented with values with the high-order bit of the low-order word
> set.  (Hint: sign extension.)
> 
> The correct formula is both simpler and far more efficient:
> 
> (classid::int8 << 32) | objid::int8
> 
> This works because oidtoi8 correctly treats the OID value as unsigned.

Oh, nice, thanks!

David



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

Предыдущее
От: Kohei KaiGai
Дата:
Сообщение: Re: [v9.3] writable foreign tables
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: Advisory Lock BIGINT Values