Re: new module contrib/tree for 7.2 ?

Hannu Krosing <hannu@tm.ee>

From: Hannu Krosing <hannu@tm.ee>
To: Oleg Bartunov <oleg@sai.msu.su>
Cc: Pgsql Hackers <pgsql-hackers@postgresql.org>
Date: 2002-01-25T16:03:27Z
Lists: pgsql-hackers
Oleg Bartunov wrote:
> 
> Hi,
> 
> Is't late to submit new contrib module for 7.2 ?
> It's almost ready and tested, we have to write README.tree.
> 
> New module creates new data types 'tree', 'treequery' for tree-like data and
> provides indexed access methods using Btree or GiST.
> Node represents as a path to the root, so record like '3.4' means
> 4-th child of 3-rd child of the root node.
> Due-to bit-representation there is a limitation to the number of
> children - 64 and defined in compile time (valid values - 8,16,32,64).

How hard it would be to automatically expand it so that 65th node will 
make it flow over to next bitfield and the whole level will then 
accommodate 64*64 = 4096 child nodes ?

> For practical purposes 64 children looks quite enough.
> insert,delete operations should be ok, while move operations
> is a pain - one should update all paths of children nodes.
> But search is very fast, we use data from Open Directory catalog (www.dmoz.org)
> for testing:

Could you send it to me for personal testing if it is not accepted to
contrib for 7.2 ?

-------------
Hannu