mirror of
https://github.com/postgres/postgres.git
synced 2025-08-25 20:23:07 +03:00
Add SP-GiST (space-partitioned GiST) index access method.
SP-GiST is comparable to GiST in flexibility, but supports non-balanced partitioned search structures rather than balanced trees. As described at PGCon 2011, this new indexing structure can beat GiST in both index build time and query speed for search problems that it is well matched to. There are a number of areas that could still use improvement, but at this point the code seems committable. Teodor Sigaev and Oleg Bartunov, with considerable revisions by Tom Lane
This commit is contained in:
@@ -32,6 +32,8 @@ typedef uint8 RmgrId;
|
||||
#define RM_GIN_ID 13
|
||||
#define RM_GIST_ID 14
|
||||
#define RM_SEQ_ID 15
|
||||
#define RM_MAX_ID RM_SEQ_ID
|
||||
#define RM_SPGIST_ID 16
|
||||
|
||||
#define RM_MAX_ID RM_SPGIST_ID
|
||||
|
||||
#endif /* RMGR_H */
|
||||
|
Reference in New Issue
Block a user