Re: [GENERAL] Implementing an Index Access Method in PG 8.4

2010-02-23 Thread Carsten Kropf
Ok, thanks so far. The main question for me now is how to support all the XLog stuff in my own access method. I cannot set it up using the WAL recovery procedure. So, what do I have to insert when doing a XLogInsert for example? I don't know which values to put in there or doesn't it just matter

Re: [GENERAL] Implementing an Index Access Method in PG 8.4

2010-02-23 Thread Greg Stark
On Tue, Feb 23, 2010 at 10:00 AM, Carsten Kropf wrote: > I have a question according to the implementation of a new index access > method in Postgres. Is it necessary to implement a new resource manager for > XLog when I am trying to achieve a stable new index access method? > It's not currentl

[GENERAL] Implementing an Index Access Method in PG 8.4

2010-02-23 Thread Carsten Kropf
Hi *, I have a question according to the implementation of a new index access method in Postgres. Is it necessary to implement a new resource manager for XLog when I am trying to achieve a stable new index access method? I actually don't know how to register a new ressource manager (if I would ha