summaryrefslogtreecommitdiff
path: root/src/include/catalog/pg_amproc.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2005-07-01 19:19:05 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2005-07-01 19:19:05 +0000
commite7e1694295e3d867f07afedf6505d0e0436cb67e (patch)
treebdda7cd092d1c73d0d53820c2a93dd8c2faa4210 /src/include/catalog/pg_amproc.h
parent875efad48170fa9c6ffde98cf8a235470726c692 (diff)
downloadpostgresql-e7e1694295e3d867f07afedf6505d0e0436cb67e.tar.gz
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.
Diffstat (limited to 'src/include/catalog/pg_amproc.h')
-rw-r--r--src/include/catalog/pg_amproc.h26
1 files changed, 25 insertions, 1 deletions
diff --git a/src/include/catalog/pg_amproc.h b/src/include/catalog/pg_amproc.h
index f9eb419a16..38c4f25783 100644
--- a/src/include/catalog/pg_amproc.h
+++ b/src/include/catalog/pg_amproc.h
@@ -19,7 +19,7 @@
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/catalog/pg_amproc.h,v 1.53 2005/04/14 01:38:20 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/catalog/pg_amproc.h,v 1.54 2005/07/01 19:19:03 tgl Exp $
*
* NOTES
* the genbki.sh script reads this file and generates .bki
@@ -170,4 +170,28 @@ DATA(insert ( 2231 0 1 456 ));
DATA(insert ( 2232 0 1 455 ));
DATA(insert ( 2235 0 1 329 ));
+
+/* gist */
+DATA(insert ( 2593 0 1 2578 ));
+DATA(insert ( 2593 0 2 2583 ));
+DATA(insert ( 2593 0 3 2579 ));
+DATA(insert ( 2593 0 4 2580 ));
+DATA(insert ( 2593 0 5 2581 ));
+DATA(insert ( 2593 0 6 2582 ));
+DATA(insert ( 2593 0 7 2584 ));
+DATA(insert ( 2594 0 1 2585 ));
+DATA(insert ( 2594 0 2 2583 ));
+DATA(insert ( 2594 0 3 2586 ));
+DATA(insert ( 2594 0 4 2580 ));
+DATA(insert ( 2594 0 5 2581 ));
+DATA(insert ( 2594 0 6 2582 ));
+DATA(insert ( 2594 0 7 2584 ));
+DATA(insert ( 2595 0 1 2591 ));
+DATA(insert ( 2595 0 2 2583 ));
+DATA(insert ( 2595 0 3 2592 ));
+DATA(insert ( 2595 0 4 2580 ));
+DATA(insert ( 2595 0 5 2581 ));
+DATA(insert ( 2595 0 6 2582 ));
+DATA(insert ( 2595 0 7 2584 ));
+
#endif /* PG_AMPROC_H */