52.43. pg_range
pg_range
The catalog pg_range stores information about range types. This is in addition to the types' entries in pg_type.
Column Type Description |
|---|
rngtypid OID of the range type |
rngsubtype OID of the element type (subtype) of this range type |
rngmultitypid OID of the multirange type for this range type |
rngcollation OID of the collation used for range comparisons, or zero if none |
rngsubopc OID of the subtype's operator class used for range comparisons |
rngcanonical OID of the function to convert a range value into canonical form, or zero if none |
rngsubdiff OID of the function to return the difference between two element values as |
: pg_range Columns
rngsubopc (plus rngcollation, if the element type is collatable) determines the sort ordering used by the range type. rngcanonical is used when the element type is discrete. rngsubdiff is optional but should be supplied to improve performance of GiST indexes on the range type.