1/*-------------------------------------------------------------------------
4 * definition of the "access method procedure" system catalog (pg_amproc)
6 * The amproc table identifies support procedures associated with index
7 * operator families and classes. These procedures can't be listed in pg_amop
8 * since they are not the implementation of any indexable operator.
10 * The primary key for this table is <amprocfamily, amproclefttype,
11 * amprocrighttype, amprocnum>. The "default" support functions for a
12 * particular opclass within the family are those with amproclefttype =
13 * amprocrighttype = opclass's opcintype. These are the ones loaded into the
14 * relcache for an index and typically used for internal index operations.
15 * Other support functions are typically used to handle cross-type indexable
16 * operators with oprleft/oprright matching the entry's amproclefttype and
17 * amprocrighttype. The exact behavior depends on the index AM, however, and
18 * some don't pay attention to non-default functions at all.
21 * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
22 * Portions Copyright (c) 1994, Regents of the University of California
24 * src/include/catalog/pg_amproc.h
27 * The Catalog.pm module reads this file and derives schema
30 *-------------------------------------------------------------------------
36#include "catalog/pg_amproc_d.h" /* IWYU pragma: export */
39 * pg_amproc definition. cpp turns this into
40 * typedef struct FormData_pg_amproc
43 CATALOG(pg_amproc,2603,AccessMethodProcedureRelationId)
47 /* the index opfamily this entry is for */
50 /* procedure's left input data type */
53 /* procedure's right input data type */
56 /* support procedure index */
64 * Form_pg_amproc corresponds to a pointer to a tuple with
65 * the format of pg_amproc relation.
70 DECLARE_UNIQUE_INDEX(pg_amproc_fam_proc_index, 2655, AccessMethodProcedureIndexId, pg_amproc, btree(amprocfamily oid_ops, amproclefttype oid_ops, amprocrighttype oid_ops, amprocnum int2_ops));
75#endif /* PG_AMPROC_H */
#define BKI_LOOKUP(catalog)
CATALOG(pg_amproc, 2603, AccessMethodProcedureRelationId)
DECLARE_UNIQUE_INDEX(pg_amproc_fam_proc_index, 2655, AccessMethodProcedureIndexId, pg_amproc, btree(amprocfamily oid_ops, amproclefttype oid_ops, amprocrighttype oid_ops, amprocnum int2_ops))
DECLARE_UNIQUE_INDEX_PKEY(pg_amproc_oid_index, 2757, AccessMethodProcedureOidIndexId, pg_amproc, btree(oid oid_ops))
MAKE_SYSCACHE(AMPROCNUM, pg_amproc_fam_proc_index, 16)
FormData_pg_amproc * Form_pg_amproc