BLOB support

Поиск
Список
Период
Сортировка
От Radosław Smogura
Тема BLOB support
Дата
Msg-id 201106012200.31805.rsmogura@softperience.eu
обсуждение исходный текст
Ответы Re: BLOB support  (Peter Eisentraut <peter_e@gmx.net>)
Список pgsql-hackers
Hello,

I partialy implemented following missing LOBs types. Requirement for this was 
to give ability to create (B/C)LOB columns and add casting functionality e.g. 
SET my_clob = 'My long text'.

Idea is as follow:
0. Blob is two state object: 1st in memory contains just bytea, serialized 
contains Oid of large object.
1. Each type has additional boolean haslobs, which is set recursivly.
2. Relation has same bool haslobs (used to speed up tables without LOBs)
3. When data are inserted/updated then "special" function is called and tuple 
is modified in this way all LOBs are serialized to (old) LOB table and just 
Oid is stored.
4. When removed LOB is removed from (old) LOB table.

I have implemented:
- 0.
- 1. and 2. without altering relations and types.
- 3. Inserts only, Updates need polishing. No recursion (no support for BLOBs 
in composites or arrays).

Current patch is here (many changes to pg_types.h - new column haslobs added), 
it's in _early_ stage for those who wants to look inside it.

Any ideas or suggestions?

Regards,
Radek

P. S. 
I'm during removal, and I have limited access to Internet.

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

Предыдущее
От: Florian Pflug
Дата:
Сообщение: Re: [BUGS] BUG #6034: pg_upgrade fails when it should not.
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [PERFORM] Hash Anti Join performance degradation