Re: Who is a maintainer of GiST code ?
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: Oleg Bartunov <oleg@sai.msu.su>
Cc: Bruce Momjian <pgman@candle.pha.pa.us>, PostgreSQL-development <pgsql-hackers@postgresql.org>
Date: 2000-12-18T21:10:13Z
Lists: pgsql-hackers
Oleg Bartunov <oleg@sai.msu.su> writes: > We have a problem with > handling NULL values in GiST. Any thought how NULL values > are handle in Rtree. AFAIR, none of the index access methods except btree handle NULLs at all --- they just ignore NULL values and don't store them in the index. Feel free to improve on that ;-). The physical representation of index tuples can handle NULLs, the problem is teaching the index logic where they should go in the index. regards, tom lane