Re: [GENERAL] GiST index implementation

2007-08-03 Thread Elena Camossi
Hi Gregory, thank you very much for you answer! > > > what is the default implementation for GiST index? B-Tree or R-Tree? > > That is, if i execute the following SQL command: > > > > CREATE index ON table USING Gist (column) > > > > what is the type of the index that is actually built? > >

[GENERAL] GiST index implementation

2007-08-02 Thread Elena Camossi
Hi list, what is the default implementation for GiST index? B-Tree or R-Tree? That is, if i execute the following SQL command: CREATE index ON table USING Gist (column) what is the type of the index that is actually built? If I specify R-Tree instead, with: CREATE index ON table USIN