mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-15 10:57:02 +08:00
Use the term "system catalog" rather than "system relation" in assorted places where it's clearly referring to a table rather than, say, an index. Use more natural word order in the header boilerplate, improve some of the one-liner catalog descriptions, and fix assorted random deviations from the normal boilerplate. All purely neatnik-ism, but why not. John Naylor, some additional cleanup by me Discussion: https://postgr.es/m/CAJVSVGUeJmFB3h-NJ18P32NPa+kzC165nm7GSoGHfPaN80Wxcw@mail.gmail.com
32 lines
1.3 KiB
Plaintext
32 lines
1.3 KiB
Plaintext
#----------------------------------------------------------------------
|
|
#
|
|
# pg_range.dat
|
|
# Initial contents of the pg_range system catalog.
|
|
#
|
|
# Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
|
|
# Portions Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
# src/include/catalog/pg_range.dat
|
|
#
|
|
#----------------------------------------------------------------------
|
|
|
|
[
|
|
|
|
{ rngtypid => 'int4range', rngsubtype => 'int4', rngsubopc => 'btree/int4_ops',
|
|
rngcanonical => 'int4range_canonical', rngsubdiff => 'int4range_subdiff' },
|
|
{ rngtypid => 'numrange', rngsubtype => 'numeric',
|
|
rngsubopc => 'btree/numeric_ops', rngcanonical => '-',
|
|
rngsubdiff => 'numrange_subdiff' },
|
|
{ rngtypid => 'tsrange', rngsubtype => 'timestamp',
|
|
rngsubopc => 'btree/timestamp_ops', rngcanonical => '-',
|
|
rngsubdiff => 'tsrange_subdiff' },
|
|
{ rngtypid => 'tstzrange', rngsubtype => 'timestamptz',
|
|
rngsubopc => 'btree/timestamptz_ops', rngcanonical => '-',
|
|
rngsubdiff => 'tstzrange_subdiff' },
|
|
{ rngtypid => 'daterange', rngsubtype => 'date', rngsubopc => 'btree/date_ops',
|
|
rngcanonical => 'daterange_canonical', rngsubdiff => 'daterange_subdiff' },
|
|
{ rngtypid => 'int8range', rngsubtype => 'int8', rngsubopc => 'btree/int8_ops',
|
|
rngcanonical => 'int8range_canonical', rngsubdiff => 'int8range_subdiff' },
|
|
|
|
]
|