]> granicus.if.org Git - postgresql/commit
Migrate rtree_gist functionality into the core system, and add some
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 1 Jul 2005 19:19:05 +0000 (19:19 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 1 Jul 2005 19:19:05 +0000 (19:19 +0000)
commite7e1694295e3d867f07afedf6505d0e0436cb67e
treebdda7cd092d1c73d0d53820c2a93dd8c2faa4210
parent875efad48170fa9c6ffde98cf8a235470726c692
Migrate rtree_gist functionality into the core system, and add some
basic regression tests for GiST to the standard regression tests.
I took the opportunity to add an rtree-equivalent gist opclass for
circles; the contrib version only covered boxes and polygons, but
indexing circles is very handy for distance searches.
16 files changed:
src/backend/access/gist/Makefile
src/backend/access/gist/gistproc.c [new file with mode: 0644]
src/backend/utils/adt/geo_ops.c
src/include/catalog/catversion.h
src/include/catalog/pg_amop.h
src/include/catalog/pg_amproc.h
src/include/catalog/pg_opclass.h
src/include/catalog/pg_operator.h
src/include/catalog/pg_proc.h
src/include/utils/geo_decls.h
src/test/regress/data/rect.data
src/test/regress/expected/create_index.out
src/test/regress/expected/opr_sanity.out
src/test/regress/expected/sanity_check.out
src/test/regress/sql/create_index.sql
src/test/regress/sql/opr_sanity.sql