67 #include "utils/fmgroids.h"
84 #define TCFLAGS_HAVE_PG_TYPE_DATA 0x000001
85 #define TCFLAGS_CHECKED_BTREE_OPCLASS 0x000002
86 #define TCFLAGS_CHECKED_HASH_OPCLASS 0x000004
87 #define TCFLAGS_CHECKED_EQ_OPR 0x000008
88 #define TCFLAGS_CHECKED_LT_OPR 0x000010
89 #define TCFLAGS_CHECKED_GT_OPR 0x000020
90 #define TCFLAGS_CHECKED_CMP_PROC 0x000040
91 #define TCFLAGS_CHECKED_HASH_PROC 0x000080
92 #define TCFLAGS_CHECKED_HASH_EXTENDED_PROC 0x000100
93 #define TCFLAGS_CHECKED_ELEM_PROPERTIES 0x000200
94 #define TCFLAGS_HAVE_ELEM_EQUALITY 0x000400
95 #define TCFLAGS_HAVE_ELEM_COMPARE 0x000800
96 #define TCFLAGS_HAVE_ELEM_HASHING 0x001000
97 #define TCFLAGS_HAVE_ELEM_EXTENDED_HASHING 0x002000
98 #define TCFLAGS_CHECKED_FIELD_PROPERTIES 0x004000
99 #define TCFLAGS_HAVE_FIELD_EQUALITY 0x008000
100 #define TCFLAGS_HAVE_FIELD_COMPARE 0x010000
101 #define TCFLAGS_HAVE_FIELD_HASHING 0x020000
102 #define TCFLAGS_HAVE_FIELD_EXTENDED_HASHING 0x040000
103 #define TCFLAGS_CHECKED_DOMAIN_CONSTRAINTS 0x080000
104 #define TCFLAGS_DOMAIN_BASE_IS_COMPOSITE 0x100000
107 #define TCFLAGS_OPERATOR_FLAGS \
108 (~(TCFLAGS_HAVE_PG_TYPE_DATA | \
109 TCFLAGS_CHECKED_DOMAIN_CONSTRAINTS | \
110 TCFLAGS_DOMAIN_BASE_IS_COMPOSITE))
298 static int dcs_cmp(
const void *
a,
const void *
b);
324 static int enum_oid_cmp(
const void *left,
const void *right);
374 if (typentry == NULL)
389 (
errcode(ERRCODE_UNDEFINED_OBJECT),
390 errmsg(
"type with OID %u does not exist", type_id)));
392 if (!typtup->typisdefined)
394 (
errcode(ERRCODE_UNDEFINED_OBJECT),
395 errmsg(
"type \"%s\" is only a shell",
412 typentry->
typlen = typtup->typlen;
413 typentry->
typbyval = typtup->typbyval;
414 typentry->
typalign = typtup->typalign;
416 typentry->
typtype = typtup->typtype;
417 typentry->
typrelid = typtup->typrelid;
419 typentry->
typelem = typtup->typelem;
424 if (typentry->
typtype == TYPTYPE_DOMAIN)
444 (
errcode(ERRCODE_UNDEFINED_OBJECT),
445 errmsg(
"type with OID %u does not exist", type_id)));
447 if (!typtup->typisdefined)
449 (
errcode(ERRCODE_UNDEFINED_OBJECT),
450 errmsg(
"type \"%s\" is only a shell",
457 typentry->
typlen = typtup->typlen;
458 typentry->
typbyval = typtup->typbyval;
459 typentry->
typalign = typtup->typalign;
461 typentry->
typtype = typtup->typtype;
462 typentry->
typrelid = typtup->typrelid;
464 typentry->
typelem = typtup->typelem;
573 if (eq_opr == ARRAY_EQ_OP &&
576 else if (eq_opr == RECORD_EQ_OP &&
581 if (typentry->
eq_opr != eq_opr)
584 typentry->
eq_opr = eq_opr;
610 if (lt_opr == ARRAY_LT_OP &&
613 else if (lt_opr == RECORD_LT_OP &&
617 typentry->
lt_opr = lt_opr;
635 if (gt_opr == ARRAY_GT_OP &&
638 else if (gt_opr == RECORD_GT_OP &&
642 typentry->
gt_opr = gt_opr;
660 if (cmp_proc == F_BTARRAYCMP &&
663 else if (cmp_proc == F_BTRECORDCMP &&
698 if (hash_proc == F_HASH_ARRAY &&
701 else if (hash_proc == F_HASH_RECORD &&
704 else if (hash_proc == F_HASH_RANGE &&
711 if (hash_proc == F_HASH_MULTIRANGE &&
747 if (hash_extended_proc == F_HASH_ARRAY_EXTENDED &&
750 else if (hash_extended_proc == F_HASH_RECORD_EXTENDED &&
753 else if (hash_extended_proc == F_HASH_RANGE_EXTENDED &&
760 if (hash_extended_proc == F_HASH_MULTIRANGE_EXTENDED &&
823 typentry->
typtype == TYPTYPE_COMPOSITE)
835 typentry->
typtype == TYPTYPE_RANGE)
848 typentry->
typtype == TYPTYPE_MULTIRANGE)
858 typentry->
typtype == TYPTYPE_DOMAIN)
866 typentry->
typtype == TYPTYPE_DOMAIN)
883 elog(
ERROR,
"invalid typrelid for composite type %u",
928 elog(
ERROR,
"cache lookup failed for range type %u",
932 subtypeOid = pg_range->rngsubtype;
934 opclassOid = pg_range->rngsubopc;
935 canonicalOid = pg_range->rngcanonical;
936 subdiffOid = pg_range->rngsubdiff;
947 elog(
ERROR,
"missing support function %d(%u,%u) in opfamily %u",
975 elog(
ERROR,
"cache lookup failed for multirange type %u",
995 bool notNull =
false;
1039 elog(
ERROR,
"cache lookup failed for type %u", typeOid);
1042 if (typTup->typtype != TYPTYPE_DOMAIN)
1050 if (typTup->typnotnull)
1055 Anum_pg_constraint_contypid,
1072 if (
c->contype != CONSTRAINT_CHECK)
1077 conRel->
rd_att, &isNull);
1079 elog(
ERROR,
"domain \"%s\" constraint \"%s\" has NULL conbin",
1091 "Domain constraints",
1132 else if (nccons >= cconslen)
1138 ccons[nccons++] = r;
1163 typeOid = typTup->typbasetype;
1183 "Domain constraints",
1232 return strcmp((*ca)->name, (*cb)->name);
1280 foreach(lc, constraints)
1291 result =
lappend(result, newr);
1354 typentry->
typtype == TYPTYPE_DOMAIN)
1530 if (typentry->
type_id == RECORDOID)
1535 else if (typentry->
typtype == TYPTYPE_COMPOSITE)
1542 if (typentry->
tupDesc == NULL)
1554 for (
i = 0;
i < tupdesc->
natts;
i++)
1559 if (attr->attisdropped)
1580 typentry->
flags |= newflags;
1584 else if (typentry->
typtype == TYPTYPE_DOMAIN)
1602 if (baseentry->
typtype == TYPTYPE_COMPOSITE)
1643 typentry->
typtype == TYPTYPE_RANGE)
1682 if (typentry->
rngtype == NULL &&
1683 typentry->
typtype == TYPTYPE_MULTIRANGE)
1738 if (type_id != RECORDOID)
1746 if (typentry->
tupDesc == NULL && !noError)
1748 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
1749 errmsg(
"type %s is not composite",
1808 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
1809 errmsg(
"record type has not been registered")));
1852 if (tupDesc != NULL)
1890 if (type_id != RECORDOID)
1901 if (typentry->
typtype == TYPTYPE_DOMAIN)
1905 if (typentry->
tupDesc == NULL && !noError)
1907 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
1908 errmsg(
"type %s is not composite",
1914 if (tupDesc != NULL)
1985 if (found && recentry->
tupdesc != NULL)
1996 if (entDesc == NULL)
2044 if (type_id != RECORDOID)
2052 if (typentry->
tupDesc == NULL)
2054 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
2055 errmsg(
"type %s is not composite",
2150 if (tupdesc == NULL)
2161 elog(
ERROR,
"cannot create duplicate shared record typmod");
2167 record_table_key.
shared =
false;
2296 if (typentry->
typtype == TYPTYPE_COMPOSITE)
2303 if (typentry->
tupDesc != NULL)
2329 else if (typentry->
typtype == TYPTYPE_DOMAIN)
2362 if (hashvalue == 0 || typentry->
type_id_hash == hashvalue)
2449 if (arg < enumdata->bitmap_base)
2452 if (offset > (
Oid) INT_MAX)
2510 if (item1 == NULL || item2 == NULL)
2528 elog(
ERROR,
"enum value %u not found in cache for enum %s",
2531 elog(
ERROR,
"enum value %u not found in cache for enum %s",
2564 if (tcache->
typtype != TYPTYPE_ENUM)
2566 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
2567 errmsg(
"%s is not an enum",
2583 Anum_pg_enum_enumtypid,
2589 EnumTypIdLabelIndexId,
2597 if (numitems >= maxitems)
2602 items[numitems].
enum_oid = en->oid;
2603 items[numitems].
sort_order = en->enumsortorder;
2629 for (start_pos = 0; start_pos < numitems - 1; start_pos++)
2635 int this_bm_size = 1;
2640 for (
i = start_pos + 1;
i < numitems;
i++)
2649 if (items[
i].sort_order > prev_order)
2658 if (this_bm_size > bm_size)
2661 bitmap_base = start_oid;
2662 bitmap = this_bitmap;
2663 bm_size = this_bm_size;
2674 if (bm_size >= (numitems - start_pos - 1))
2774 key.u.local_tupdesc = tupdesc;
2777 if (record_table_entry)
2781 record_table_entry);
2808 elog(
ERROR,
"cannot create duplicate shared record typmod");
2816 typmod_table_entry->
typmod = typmod;
2819 typmod_table_entry);
2835 record_table_entry);
2857 record_table_entry);
static void pg_atomic_init_u32(volatile pg_atomic_uint32 *ptr, uint32 val)
static uint32 pg_atomic_fetch_add_u32(volatile pg_atomic_uint32 *ptr, int32 add_)
void bms_free(Bitmapset *a)
bool bms_is_member(int x, const Bitmapset *a)
Bitmapset * bms_make_singleton(int x)
Bitmapset * bms_add_member(Bitmapset *a, int x)
Bitmapset * bms_copy(const Bitmapset *a)
#define TextDatumGetCString(d)
#define RegProcedureIsValid(p)
#define FLEXIBLE_ARRAY_MEMBER
#define MemSet(start, val, len)
#define OidIsValid(objectId)
void CreateCacheMemoryContext(void)
elog(ERROR, "%s: %s", p2, msg)
void * dsa_get_address(dsa_area *area, dsa_pointer dp)
void dsa_free(dsa_area *area, dsa_pointer dp)
#define dsa_allocate(area, size)
bool dshash_delete_key(dshash_table *hash_table, const void *key)
void dshash_release_lock(dshash_table *hash_table, void *entry)
void dshash_detach(dshash_table *hash_table)
void * dshash_find(dshash_table *hash_table, const void *key, bool exclusive)
dshash_table_handle dshash_get_hash_table_handle(dshash_table *hash_table)
dshash_hash dshash_memhash(const void *v, size_t size, void *arg)
void * dshash_find_or_insert(dshash_table *hash_table, const void *key, bool *found)
dshash_table * dshash_attach(dsa_area *area, const dshash_parameters *params, dshash_table_handle handle, void *arg)
int dshash_memcmp(const void *a, const void *b, size_t size, void *arg)
dshash_table * dshash_create(dsa_area *area, const dshash_parameters *params, void *arg)
dsa_pointer dshash_table_handle
void on_dsm_detach(dsm_segment *seg, on_dsm_detach_callback function, Datum arg)
void * hash_search(HTAB *hashp, const void *keyPtr, HASHACTION action, bool *foundPtr)
HTAB * hash_create(const char *tabname, long nelem, const HASHCTL *info, int flags)
void * hash_seq_search(HASH_SEQ_STATUS *status)
void hash_seq_init(HASH_SEQ_STATUS *status, HTAB *hashp)
int errcode(int sqlerrcode)
int errmsg(const char *fmt,...)
#define ereport(elevel,...)
ExprState * ExecInitExpr(Expr *node, PlanState *parent)
void fmgr_info_cxt(Oid functionId, FmgrInfo *finfo, MemoryContext mcxt)
void systable_endscan(SysScanDesc sysscan)
HeapTuple systable_getnext(SysScanDesc sysscan)
SysScanDesc systable_beginscan(Relation heapRelation, Oid indexId, bool indexOK, Snapshot snapshot, int nkeys, ScanKey key)
#define HASHSTANDARD_PROC
#define HASHEXTENDED_PROC
#define HeapTupleIsValid(tuple)
static Datum fastgetattr(HeapTuple tup, int attnum, TupleDesc tupleDesc, bool *isnull)
#define IsParallelWorker()
Oid GetDefaultOpClass(Oid type_id, Oid am_id)
void CacheRegisterRelcacheCallback(RelcacheCallbackFunction func, Datum arg)
void CacheRegisterSyscacheCallback(int cacheid, SyscacheCallbackFunction func, Datum arg)
Assert(fmt[strlen(fmt) - 1] !='\n')
List * lappend(List *list, void *datum)
List * lcons(void *datum, List *list)
Oid get_opclass_input_type(Oid opclass)
Oid get_opclass_family(Oid opclass)
Oid get_multirange_range(Oid multirangeOid)
Oid get_opfamily_proc(Oid opfamily, Oid lefttype, Oid righttype, int16 procnum)
RegProcedure get_opcode(Oid opno)
Oid get_opfamily_member(Oid opfamily, Oid lefttype, Oid righttype, int16 strategy)
Oid get_base_element_type(Oid typid)
Oid getBaseTypeAndTypmod(Oid typid, int32 *typmod)
@ LWTRANCHE_PER_SESSION_RECORD_TYPMOD
@ LWTRANCHE_PER_SESSION_RECORD_TYPE
void MemoryContextRegisterResetCallback(MemoryContext context, MemoryContextCallback *cb)
void MemoryContextSetParent(MemoryContext context, MemoryContext new_parent)
char * pstrdup(const char *in)
void pfree(void *pointer)
MemoryContext TopMemoryContext
void * MemoryContextAllocZero(MemoryContext context, Size size)
MemoryContext CurrentMemoryContext
void * repalloc(void *pointer, Size size)
void * MemoryContextAlloc(MemoryContext context, Size size)
MemoryContext CacheMemoryContext
void MemoryContextDelete(MemoryContext context)
#define AllocSetContextCreate
#define ALLOCSET_SMALL_SIZES
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
#define repalloc0_array(pointer, type, oldcount, count)
FormData_pg_attribute * Form_pg_attribute
static uint32 pg_nextpower2_32(uint32 num)
FormData_pg_constraint * Form_pg_constraint
FormData_pg_enum * Form_pg_enum
FormData_pg_range * Form_pg_range
FormData_pg_type * Form_pg_type
Expr * expression_planner(Expr *expr)
#define qsort(a, b, c, d)
static Datum PointerGetDatum(const void *X)
static Datum ObjectIdGetDatum(Oid X)
void * stringToNode(const char *str)
#define RelationGetDescr(relation)
void ScanKeyInit(ScanKey entry, AttrNumber attributeNumber, StrategyNumber strategy, RegProcedure procedure, Datum argument)
void relation_close(Relation relation, LOCKMODE lockmode)
Relation relation_open(Oid relationId, LOCKMODE lockmode)
#define BTGreaterStrategyNumber
#define HTEqualStrategyNumber
#define BTLessStrategyNumber
#define BTEqualStrategyNumber
DomainConstraintCache * dcc
MemoryContextCallback callback
DomainConstraintType constrainttype
ExprState * check_exprstate
MemoryContextCallbackFunction func
dshash_table * shared_record_table
struct SharedRecordTypmodRegistry * shared_typmod_registry
dshash_table * shared_typmod_table
union SharedRecordTableKey::@30 u
dsa_pointer shared_tupdesc
dshash_table_handle typmod_table_handle
pg_atomic_uint32 next_typmod
dshash_table_handle record_table_handle
dsa_pointer shared_tupdesc
uint64 tupDesc_identifier
FmgrInfo rng_cmp_proc_finfo
struct TypeCacheEntry * rngelemtype
FmgrInfo hash_extended_proc_finfo
DomainConstraintCache * domainData
struct TypeCacheEntry * rngtype
FmgrInfo rng_subdiff_finfo
struct TypeCacheEnumData * enumData
struct TypeCacheEntry * nextDomain
FmgrInfo rng_canonical_finfo
Bitmapset * sorted_values
EnumItem enum_values[FLEXIBLE_ARRAY_MEMBER]
void ReleaseSysCache(HeapTuple tuple)
HeapTuple SearchSysCache1(int cacheId, Datum key1)
#define GetSysCacheHashValue1(cacheId, key1)
void table_close(Relation relation, LOCKMODE lockmode)
Relation table_open(Oid relationId, LOCKMODE lockmode)
TupleDesc CreateTupleDescCopyConstr(TupleDesc tupdesc)
void TupleDescCopy(TupleDesc dst, TupleDesc src)
void DecrTupleDescRefCount(TupleDesc tupdesc)
void FreeTupleDesc(TupleDesc tupdesc)
void IncrTupleDescRefCount(TupleDesc tupdesc)
TupleDesc CreateTupleDescCopy(TupleDesc tupdesc)
uint32 hashTupleDesc(TupleDesc desc)
bool equalTupleDescs(TupleDesc tupdesc1, TupleDesc tupdesc2)
#define TupleDescSize(src)
#define PinTupleDesc(tupdesc)
struct TupleDescData * TupleDesc
#define TupleDescAttr(tupdesc, i)
#define TCFLAGS_CHECKED_BTREE_OPCLASS
#define TCFLAGS_CHECKED_HASH_OPCLASS
static bool range_element_has_hashing(TypeCacheEntry *typentry)
void InitDomainConstraintRef(Oid type_id, DomainConstraintRef *ref, MemoryContext refctx, bool need_exprstate)
static TupleDesc lookup_rowtype_tupdesc_internal(Oid type_id, int32 typmod, bool noError)
TupleDesc lookup_rowtype_tupdesc(Oid type_id, int32 typmod)
void SharedRecordTypmodRegistryAttach(SharedRecordTypmodRegistry *registry)
#define TCFLAGS_OPERATOR_FLAGS
#define TCFLAGS_CHECKED_FIELD_PROPERTIES
static void cache_range_element_properties(TypeCacheEntry *typentry)
#define TCFLAGS_HAVE_FIELD_COMPARE
#define TCFLAGS_DOMAIN_BASE_IS_COMPOSITE
static void load_enum_cache_data(TypeCacheEntry *tcache)
static bool record_fields_have_hashing(TypeCacheEntry *typentry)
static EnumItem * find_enumitem(TypeCacheEnumData *enumdata, Oid arg)
static bool record_fields_have_extended_hashing(TypeCacheEntry *typentry)
static TupleDesc find_or_make_matching_shared_tupledesc(TupleDesc tupdesc)
static int32 NextRecordTypmod
TupleDesc lookup_rowtype_tupdesc_domain(Oid type_id, int32 typmod, bool noError)
static const dshash_parameters srtr_typmod_table_params
#define TCFLAGS_CHECKED_GT_OPR
static bool multirange_element_has_hashing(TypeCacheEntry *typentry)
static List * prep_domain_constraints(List *constraints, MemoryContext execctx)
TupleDesc lookup_rowtype_tupdesc_noerror(Oid type_id, int32 typmod, bool noError)
static bool record_fields_have_equality(TypeCacheEntry *typentry)
#define TCFLAGS_CHECKED_LT_OPR
#define TCFLAGS_CHECKED_HASH_PROC
static void dccref_deletion_callback(void *arg)
#define TCFLAGS_HAVE_FIELD_EQUALITY
struct SharedRecordTableEntry SharedRecordTableEntry
void SharedRecordTypmodRegistryInit(SharedRecordTypmodRegistry *registry, dsm_segment *segment, dsa_area *area)
static int dcs_cmp(const void *a, const void *b)
static bool array_element_has_extended_hashing(TypeCacheEntry *typentry)
static int shared_record_table_compare(const void *a, const void *b, size_t size, void *arg)
static bool array_element_has_hashing(TypeCacheEntry *typentry)
static void load_multirangetype_info(TypeCacheEntry *typentry)
#define TCFLAGS_CHECKED_CMP_PROC
struct SharedTypmodTableEntry SharedTypmodTableEntry
#define TCFLAGS_HAVE_ELEM_EXTENDED_HASHING
static bool multirange_element_has_extended_hashing(TypeCacheEntry *typentry)
static bool array_element_has_equality(TypeCacheEntry *typentry)
static dsa_pointer share_tupledesc(dsa_area *area, TupleDesc tupdesc, uint32 typmod)
static void load_rangetype_info(TypeCacheEntry *typentry)
uint64 assign_record_type_identifier(Oid type_id, int32 typmod)
static RecordCacheArrayEntry * RecordCacheArray
static bool range_element_has_extended_hashing(TypeCacheEntry *typentry)
static HTAB * RecordCacheHash
static bool enum_known_sorted(TypeCacheEnumData *enumdata, Oid arg)
static TypeCacheEntry * firstDomainTypeEntry
struct RecordCacheEntry RecordCacheEntry
static void shared_record_typmod_registry_detach(dsm_segment *segment, Datum datum)
#define TCFLAGS_HAVE_ELEM_HASHING
struct RecordCacheArrayEntry RecordCacheArrayEntry
#define TCFLAGS_CHECKED_HASH_EXTENDED_PROC
static void TypeCacheTypCallback(Datum arg, int cacheid, uint32 hashvalue)
struct TypeCacheEnumData TypeCacheEnumData
static void TypeCacheConstrCallback(Datum arg, int cacheid, uint32 hashvalue)
static void TypeCacheOpcCallback(Datum arg, int cacheid, uint32 hashvalue)
static void load_domaintype_info(TypeCacheEntry *typentry)
bool DomainHasConstraints(Oid type_id)
#define TCFLAGS_HAVE_ELEM_COMPARE
static void TypeCacheRelCallback(Datum arg, Oid relid)
static void cache_array_element_properties(TypeCacheEntry *typentry)
size_t SharedRecordTypmodRegistryEstimate(void)
static void cache_multirange_element_properties(TypeCacheEntry *typentry)
#define TCFLAGS_CHECKED_ELEM_PROPERTIES
#define TCFLAGS_HAVE_ELEM_EQUALITY
static bool array_element_has_compare(TypeCacheEntry *typentry)
#define TCFLAGS_HAVE_PG_TYPE_DATA
static uint32 shared_record_table_hash(const void *a, size_t size, void *arg)
int compare_values_of_enum(TypeCacheEntry *tcache, Oid arg1, Oid arg2)
#define TCFLAGS_CHECKED_DOMAIN_CONSTRAINTS
#define TCFLAGS_HAVE_FIELD_EXTENDED_HASHING
struct SharedRecordTableKey SharedRecordTableKey
static int32 RecordCacheArrayLen
void assign_record_type_typmod(TupleDesc tupDesc)
static HTAB * TypeCacheHash
static uint64 tupledesc_id_counter
TypeCacheEntry * lookup_type_cache(Oid type_id, int flags)
static bool record_fields_have_compare(TypeCacheEntry *typentry)
#define TCFLAGS_HAVE_FIELD_HASHING
static int record_type_typmod_compare(const void *a, const void *b, size_t size)
static const dshash_parameters srtr_record_table_params
TupleDesc lookup_rowtype_tupdesc_copy(Oid type_id, int32 typmod)
static int enum_oid_cmp(const void *left, const void *right)
static void decr_dcc_refcount(DomainConstraintCache *dcc)
#define TCFLAGS_CHECKED_EQ_OPR
void UpdateDomainConstraintRef(DomainConstraintRef *ref)
static void ensure_record_cache_typmod_slot_exists(int32 typmod)
static void cache_record_field_properties(TypeCacheEntry *typentry)
static uint32 record_type_typmod_hash(const void *data, size_t size)
static void load_typcache_tupdesc(TypeCacheEntry *typentry)
#define INVALID_TUPLEDESC_IDENTIFIER
#define TYPECACHE_HASH_PROC_FINFO
#define TYPECACHE_HASH_OPFAMILY
#define TYPECACHE_TUPDESC
#define TYPECACHE_MULTIRANGE_INFO
struct SharedRecordTypmodRegistry SharedRecordTypmodRegistry
#define TYPECACHE_EQ_OPR_FINFO
#define TYPECACHE_HASH_EXTENDED_PROC
#define TYPECACHE_BTREE_OPFAMILY
#define TYPECACHE_DOMAIN_BASE_INFO
#define TYPECACHE_DOMAIN_CONSTR_INFO
#define TYPECACHE_RANGE_INFO
#define TYPECACHE_CMP_PROC
struct TypeCacheEntry TypeCacheEntry
#define TYPECACHE_HASH_EXTENDED_PROC_FINFO
#define TYPECACHE_CMP_PROC_FINFO
#define TYPECACHE_HASH_PROC