Add data for WAL in pg_stat_io and backend statistics
[pgsql.git] / src / include / catalog / pg_range.h
blob3bba61627821f2b7d1bcb3798d40a8a1580a7d3a
1 /*-------------------------------------------------------------------------
3 * pg_range.h
4 * definition of the "range type" system catalog (pg_range)
7 * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * src/include/catalog/pg_range.h
12 * NOTES
13 * The Catalog.pm module reads this file and derives schema
14 * information.
16 *-------------------------------------------------------------------------
18 #ifndef PG_RANGE_H
19 #define PG_RANGE_H
21 #include "catalog/genbki.h"
22 #include "catalog/pg_range_d.h" /* IWYU pragma: export */
24 /* ----------------
25 * pg_range definition. cpp turns this into
26 * typedef struct FormData_pg_range
27 * ----------------
29 CATALOG(pg_range,3541,RangeRelationId)
31 /* OID of owning range type */
32 Oid rngtypid BKI_LOOKUP(pg_type);
34 /* OID of range's element type (subtype) */
35 Oid rngsubtype BKI_LOOKUP(pg_type);
37 /* OID of the range's multirange type */
38 Oid rngmultitypid BKI_LOOKUP(pg_type);
40 /* collation for this range type, or 0 */
41 Oid rngcollation BKI_DEFAULT(0) BKI_LOOKUP_OPT(pg_collation);
43 /* subtype's btree opclass */
44 Oid rngsubopc BKI_LOOKUP(pg_opclass);
46 /* canonicalize range, or 0 */
47 regproc rngcanonical BKI_LOOKUP_OPT(pg_proc);
49 /* subtype difference as a float8, or 0 */
50 regproc rngsubdiff BKI_LOOKUP_OPT(pg_proc);
51 } FormData_pg_range;
53 /* ----------------
54 * Form_pg_range corresponds to a pointer to a tuple with
55 * the format of pg_range relation.
56 * ----------------
58 typedef FormData_pg_range *Form_pg_range;
60 DECLARE_UNIQUE_INDEX_PKEY(pg_range_rngtypid_index, 3542, RangeTypidIndexId, pg_range, btree(rngtypid oid_ops));
61 DECLARE_UNIQUE_INDEX(pg_range_rngmultitypid_index, 2228, RangeMultirangeTypidIndexId, pg_range, btree(rngmultitypid oid_ops));
63 MAKE_SYSCACHE(RANGETYPE, pg_range_rngtypid_index, 4);
64 MAKE_SYSCACHE(RANGEMULTIRANGE, pg_range_rngmultitypid_index, 4);
67 * prototypes for functions in pg_range.c
70 extern void RangeCreate(Oid rangeTypeOid, Oid rangeSubType, Oid rangeCollation,
71 Oid rangeSubOpclass, RegProcedure rangeCanonical,
72 RegProcedure rangeSubDiff, Oid multirangeTypeOid);
73 extern void RangeDelete(Oid rangeTypeOid);
75 #endif /* PG_RANGE_H */