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))
293 static int dcs_cmp(
const void *
a,
const void *
b);
319 static int enum_oid_cmp(
const void *left,
const void *right);
369 if (typentry == NULL)
384 (
errcode(ERRCODE_UNDEFINED_OBJECT),
385 errmsg(
"type with OID %u does not exist", type_id)));
387 if (!typtup->typisdefined)
389 (
errcode(ERRCODE_UNDEFINED_OBJECT),
390 errmsg(
"type \"%s\" is only a shell",
407 typentry->
typlen = typtup->typlen;
408 typentry->
typbyval = typtup->typbyval;
409 typentry->
typalign = typtup->typalign;
411 typentry->
typtype = typtup->typtype;
412 typentry->
typrelid = typtup->typrelid;
414 typentry->
typelem = typtup->typelem;
419 if (typentry->
typtype == TYPTYPE_DOMAIN)
439 (
errcode(ERRCODE_UNDEFINED_OBJECT),
440 errmsg(
"type with OID %u does not exist", type_id)));
442 if (!typtup->typisdefined)
444 (
errcode(ERRCODE_UNDEFINED_OBJECT),
445 errmsg(
"type \"%s\" is only a shell",
452 typentry->
typlen = typtup->typlen;
453 typentry->
typbyval = typtup->typbyval;
454 typentry->
typalign = typtup->typalign;
456 typentry->
typtype = typtup->typtype;
457 typentry->
typrelid = typtup->typrelid;
459 typentry->
typelem = typtup->typelem;
568 if (eq_opr == ARRAY_EQ_OP &&
571 else if (eq_opr == RECORD_EQ_OP &&
576 if (typentry->
eq_opr != eq_opr)
579 typentry->
eq_opr = eq_opr;
605 if (lt_opr == ARRAY_LT_OP &&
608 else if (lt_opr == RECORD_LT_OP &&
612 typentry->
lt_opr = lt_opr;
630 if (gt_opr == ARRAY_GT_OP &&
633 else if (gt_opr == RECORD_GT_OP &&
637 typentry->
gt_opr = gt_opr;
655 if (cmp_proc == F_BTARRAYCMP &&
658 else if (cmp_proc == F_BTRECORDCMP &&
693 if (hash_proc == F_HASH_ARRAY &&
696 else if (hash_proc == F_HASH_RECORD &&
699 else if (hash_proc == F_HASH_RANGE &&
706 if (hash_proc == F_HASH_MULTIRANGE &&
742 if (hash_extended_proc == F_HASH_ARRAY_EXTENDED &&
745 else if (hash_extended_proc == F_HASH_RECORD_EXTENDED &&
748 else if (hash_extended_proc == F_HASH_RANGE_EXTENDED &&
755 if (hash_extended_proc == F_HASH_MULTIRANGE_EXTENDED &&
818 typentry->
typtype == TYPTYPE_COMPOSITE)
830 typentry->
typtype == TYPTYPE_RANGE)
843 typentry->
typtype == TYPTYPE_MULTIRANGE)
853 typentry->
typtype == TYPTYPE_DOMAIN)
861 typentry->
typtype == TYPTYPE_DOMAIN)
878 elog(
ERROR,
"invalid typrelid for composite type %u",
923 elog(
ERROR,
"cache lookup failed for range type %u",
927 subtypeOid = pg_range->rngsubtype;
929 opclassOid = pg_range->rngsubopc;
930 canonicalOid = pg_range->rngcanonical;
931 subdiffOid = pg_range->rngsubdiff;
942 elog(
ERROR,
"missing support function %d(%u,%u) in opfamily %u",
970 elog(
ERROR,
"cache lookup failed for multirange type %u",
990 bool notNull =
false;
1034 elog(
ERROR,
"cache lookup failed for type %u", typeOid);
1037 if (typTup->typtype != TYPTYPE_DOMAIN)
1045 if (typTup->typnotnull)
1050 Anum_pg_constraint_contypid,
1067 if (
c->contype != CONSTRAINT_CHECK)
1072 conRel->
rd_att, &isNull);
1074 elog(
ERROR,
"domain \"%s\" constraint \"%s\" has NULL conbin",
1086 "Domain constraints",
1127 else if (nccons >= cconslen)
1133 ccons[nccons++] = r;
1158 typeOid = typTup->typbasetype;
1178 "Domain constraints",
1227 return strcmp((*ca)->name, (*cb)->name);
1275 foreach(lc, constraints)
1286 result =
lappend(result, newr);
1349 typentry->
typtype == TYPTYPE_DOMAIN)
1525 if (typentry->
type_id == RECORDOID)
1530 else if (typentry->
typtype == TYPTYPE_COMPOSITE)
1537 if (typentry->
tupDesc == NULL)
1549 for (
i = 0;
i < tupdesc->
natts;
i++)
1554 if (attr->attisdropped)
1575 typentry->
flags |= newflags;
1579 else if (typentry->
typtype == TYPTYPE_DOMAIN)
1597 if (baseentry->
typtype == TYPTYPE_COMPOSITE)
1638 typentry->
typtype == TYPTYPE_RANGE)
1677 if (typentry->
rngtype == NULL &&
1678 typentry->
typtype == TYPTYPE_MULTIRANGE)
1732 if (type_id != RECORDOID)
1740 if (typentry->
tupDesc == NULL && !noError)
1742 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
1743 errmsg(
"type %s is not composite",
1802 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
1803 errmsg(
"record type has not been registered")));
1846 if (tupDesc != NULL)
1884 if (type_id != RECORDOID)
1895 if (typentry->
typtype == TYPTYPE_DOMAIN)
1899 if (typentry->
tupDesc == NULL && !noError)
1901 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
1902 errmsg(
"type %s is not composite",
1908 if (tupDesc != NULL)
1979 if (found && recentry->
tupdesc != NULL)
1990 if (entDesc == NULL)
2038 if (type_id != RECORDOID)
2046 if (typentry->
tupDesc == NULL)
2048 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
2049 errmsg(
"type %s is not composite",
2144 if (tupdesc == NULL)
2155 elog(
ERROR,
"cannot create duplicate shared record typmod");
2161 record_table_key.
shared =
false;
2290 if (typentry->
typtype == TYPTYPE_COMPOSITE)
2297 if (typentry->
tupDesc != NULL)
2323 else if (typentry->
typtype == TYPTYPE_DOMAIN)
2356 if (hashvalue == 0 || typentry->
type_id_hash == hashvalue)
2443 if (arg < enumdata->bitmap_base)
2446 if (offset > (
Oid) INT_MAX)
2504 if (item1 == NULL || item2 == NULL)
2522 elog(
ERROR,
"enum value %u not found in cache for enum %s",
2525 elog(
ERROR,
"enum value %u not found in cache for enum %s",
2558 if (tcache->
typtype != TYPTYPE_ENUM)
2560 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
2561 errmsg(
"%s is not an enum",
2577 Anum_pg_enum_enumtypid,
2583 EnumTypIdLabelIndexId,
2591 if (numitems >= maxitems)
2596 items[numitems].
enum_oid = en->oid;
2597 items[numitems].
sort_order = en->enumsortorder;
2623 for (start_pos = 0; start_pos < numitems - 1; start_pos++)
2629 int this_bm_size = 1;
2634 for (
i = start_pos + 1;
i < numitems;
i++)
2643 if (items[
i].sort_order > prev_order)
2652 if (this_bm_size > bm_size)
2655 bitmap_base = start_oid;
2656 bitmap = this_bitmap;
2657 bm_size = this_bm_size;
2668 if (bm_size >= (numitems - start_pos - 1))
2768 key.u.local_tupdesc = tupdesc;
2771 if (record_table_entry)
2775 record_table_entry);
2802 elog(
ERROR,
"cannot create duplicate shared record typmod");
2810 typmod_table_entry->
typmod = typmod;
2813 typmod_table_entry);
2829 record_table_entry);
2851 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
static void static void status(const char *fmt,...) pg_attribute_printf(1
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::@29 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 TupleDesc * RecordCacheArray
static bool range_element_has_extended_hashing(TypeCacheEntry *typentry)
static HTAB * RecordCacheHash
static bool enum_known_sorted(TypeCacheEnumData *enumdata, Oid arg)
static uint64 * RecordIdentifierArray
static TypeCacheEntry * firstDomainTypeEntry
struct RecordCacheEntry RecordCacheEntry
static void shared_record_typmod_registry_detach(dsm_segment *segment, Datum datum)
#define TCFLAGS_HAVE_ELEM_HASHING
#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