B-tree strategy functions

The btree_ops operator class defines the following strategy functions for the btree access method:
  • lessthan (<)
  • lessthanorequal (<=)
  • equal (=)
  • greaterthanorequal (>=)
  • greaterthan (>)

These strategy functions are all operator functions. That is, each function is associated with an operator symbol; in this case, with a relational-operator symbol. For more information, see Relational operators.