Default Operator Classes
Each secondary-access method has a default operator class that is associated with it. By default, the CREATE INDEX statement associates the default operator class with an index.
CREATE INDEX zip_ix ON customer(zipcode)
- The default B-tree operator class is a built-in operator class.
The database server implements the operator-class functions for this operator class and registers it as btree_ops in the system catalog tables of a database.
- The default R-tree operator class is a registered operator class.
The database server registers this operator class as rtree_ops in the system catalog tables. The database server does not implement the operator-class functions for the default R-tree operator class.
DataBlade modules can provide other types of secondary-access methods. If a DataBlade module provides a secondary-access method, it might also provide a default operator class. For more information, refer to your DataBlade module user's guide.