Updated packed varlena patch

Поиск
Список
Период
Сортировка
От Gregory Stark
Тема Updated packed varlena patch
Дата
Msg-id 877itq4f9b.fsf@stark.xeocode.com
обсуждение исходный текст
Список pgsql-patches
I added a little-endian special-case using the low order bits as described by
Tom.

Also, I noticed that int2vector and oidvector are already flagged in pg_type
with attstorage == 'p'. Really any type with attstorage == 'p' should be
exempted from packed varlena handling since it isn't expecting to be toasted.

This lets me clean up heaptuple.c a bit so now it doesn't depend on pg_type.h
and doesn't have any special case exemption for oidvector and int2vector. It
also means any other type can opt out from packed varlena packing by setting
attstorage. I've left inet and cidr with toast support and changed them to
have attstorage 'm' instead.

 http://community.enterprisedb.com/varlena/patch-varvarlena-17.patch.gz

--
  Gregory Stark
  EnterpriseDB          http://www.enterprisedb.com

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

Предыдущее
От: Heikki Linnakangas
Дата:
Сообщение: Doc update, CLUSTER is not MVCC-safe
Следующее
От: Gregory Stark
Дата:
Сообщение: non-recursive WITH clause support