68 #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))
300 static int dcs_cmp(
const void *
a,
const void *
b);
326 static int enum_oid_cmp(
const void *left,
const void *right);
366 ctl.keysize =
sizeof(
Oid);
394 if (typentry == NULL)
409 (
errcode(ERRCODE_UNDEFINED_OBJECT),
410 errmsg(
"type with OID %u does not exist", type_id)));
412 if (!typtup->typisdefined)
414 (
errcode(ERRCODE_UNDEFINED_OBJECT),
415 errmsg(
"type \"%s\" is only a shell",
431 typentry->
typlen = typtup->typlen;
432 typentry->
typbyval = typtup->typbyval;
433 typentry->
typalign = typtup->typalign;
435 typentry->
typtype = typtup->typtype;
436 typentry->
typrelid = typtup->typrelid;
438 typentry->
typelem = typtup->typelem;
443 if (typentry->
typtype == TYPTYPE_DOMAIN)
463 (
errcode(ERRCODE_UNDEFINED_OBJECT),
464 errmsg(
"type with OID %u does not exist", type_id)));
466 if (!typtup->typisdefined)
468 (
errcode(ERRCODE_UNDEFINED_OBJECT),
469 errmsg(
"type \"%s\" is only a shell",
476 typentry->
typlen = typtup->typlen;
477 typentry->
typbyval = typtup->typbyval;
478 typentry->
typalign = typtup->typalign;
480 typentry->
typtype = typtup->typtype;
481 typentry->
typrelid = typtup->typrelid;
483 typentry->
typelem = typtup->typelem;
592 if (eq_opr == ARRAY_EQ_OP &&
595 else if (eq_opr == RECORD_EQ_OP &&
600 if (typentry->
eq_opr != eq_opr)
603 typentry->
eq_opr = eq_opr;
629 if (lt_opr == ARRAY_LT_OP &&
632 else if (lt_opr == RECORD_LT_OP &&
636 typentry->
lt_opr = lt_opr;
654 if (gt_opr == ARRAY_GT_OP &&
657 else if (gt_opr == RECORD_GT_OP &&
661 typentry->
gt_opr = gt_opr;
679 if (cmp_proc == F_BTARRAYCMP &&
682 else if (cmp_proc == F_BTRECORDCMP &&
717 if (hash_proc == F_HASH_ARRAY &&
720 else if (hash_proc == F_HASH_RECORD &&
723 else if (hash_proc == F_HASH_RANGE &&
730 if (hash_proc == F_HASH_MULTIRANGE &&
766 if (hash_extended_proc == F_HASH_ARRAY_EXTENDED &&
769 else if (hash_extended_proc == F_HASH_RECORD_EXTENDED &&
772 else if (hash_extended_proc == F_HASH_RANGE_EXTENDED &&
779 if (hash_extended_proc == F_HASH_MULTIRANGE_EXTENDED &&
842 typentry->
typtype == TYPTYPE_COMPOSITE)
854 typentry->
typtype == TYPTYPE_RANGE)
867 typentry->
typtype == TYPTYPE_MULTIRANGE)
877 typentry->
typtype == TYPTYPE_DOMAIN)
885 typentry->
typtype == TYPTYPE_DOMAIN)
902 elog(
ERROR,
"invalid typrelid for composite type %u",
947 elog(
ERROR,
"cache lookup failed for range type %u",
951 subtypeOid = pg_range->rngsubtype;
953 opclassOid = pg_range->rngsubopc;
954 canonicalOid = pg_range->rngcanonical;
955 subdiffOid = pg_range->rngsubdiff;
967 elog(
ERROR,
"missing support function %d(%u,%u) in opfamily %u",
995 elog(
ERROR,
"cache lookup failed for multirange type %u",
1015 bool notNull =
false;
1059 elog(
ERROR,
"cache lookup failed for type %u", typeOid);
1062 if (typTup->typtype != TYPTYPE_DOMAIN)
1070 if (typTup->typnotnull)
1075 Anum_pg_constraint_contypid,
1092 if (
c->contype != CONSTRAINT_CHECK)
1097 conRel->
rd_att, &isNull);
1099 elog(
ERROR,
"domain \"%s\" constraint \"%s\" has NULL conbin",
1111 "Domain constraints",
1152 else if (nccons >= cconslen)
1158 ccons[nccons++] = r;
1183 typeOid = typTup->typbasetype;
1203 "Domain constraints",
1252 return strcmp((*ca)->name, (*cb)->name);
1300 foreach(lc, constraints)
1311 result =
lappend(result, newr);
1374 typentry->
typtype == TYPTYPE_DOMAIN)
1550 if (typentry->
type_id == RECORDOID)
1555 else if (typentry->
typtype == TYPTYPE_COMPOSITE)
1562 if (typentry->
tupDesc == NULL)
1574 for (
i = 0;
i < tupdesc->
natts;
i++)
1579 if (attr->attisdropped)
1600 typentry->
flags |= newflags;
1604 else if (typentry->
typtype == TYPTYPE_DOMAIN)
1622 if (baseentry->
typtype == TYPTYPE_COMPOSITE)
1663 typentry->
typtype == TYPTYPE_RANGE)
1702 if (typentry->
rngtype == NULL &&
1703 typentry->
typtype == TYPTYPE_MULTIRANGE)
1758 if (type_id != RECORDOID)
1766 if (typentry->
tupDesc == NULL && !noError)
1768 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
1769 errmsg(
"type %s is not composite",
1828 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
1829 errmsg(
"record type has not been registered")));
1872 if (tupDesc != NULL)
1910 if (type_id != RECORDOID)
1921 if (typentry->
typtype == TYPTYPE_DOMAIN)
1925 if (typentry->
tupDesc == NULL && !noError)
1927 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
1928 errmsg(
"type %s is not composite",
1934 if (tupDesc != NULL)
2005 if (found && recentry->
tupdesc != NULL)
2016 if (entDesc == NULL)
2064 if (type_id != RECORDOID)
2072 if (typentry->
tupDesc == NULL)
2074 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
2075 errmsg(
"type %s is not composite",
2170 if (tupdesc == NULL)
2181 elog(
ERROR,
"cannot create duplicate shared record typmod");
2187 record_table_key.
shared =
false;
2316 if (typentry->
typtype == TYPTYPE_COMPOSITE)
2323 if (typentry->
tupDesc != NULL)
2349 else if (typentry->
typtype == TYPTYPE_DOMAIN)
2477 if (arg < enumdata->bitmap_base)
2480 if (offset > (
Oid) INT_MAX)
2538 if (item1 == NULL || item2 == NULL)
2556 elog(
ERROR,
"enum value %u not found in cache for enum %s",
2559 elog(
ERROR,
"enum value %u not found in cache for enum %s",
2592 if (tcache->
typtype != TYPTYPE_ENUM)
2594 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
2595 errmsg(
"%s is not an enum",
2611 Anum_pg_enum_enumtypid,
2617 EnumTypIdLabelIndexId,
2625 if (numitems >= maxitems)
2630 items[numitems].enum_oid = en->oid;
2631 items[numitems].sort_order = en->enumsortorder;
2657 for (start_pos = 0; start_pos < numitems - 1; start_pos++)
2663 int this_bm_size = 1;
2664 Oid start_oid =
items[start_pos].enum_oid;
2668 for (
i = start_pos + 1;
i < numitems;
i++)
2672 offset =
items[
i].enum_oid - start_oid;
2677 if (
items[
i].sort_order > prev_order)
2679 prev_order =
items[
i].sort_order;
2686 if (this_bm_size > bm_size)
2689 bitmap_base = start_oid;
2690 bitmap = this_bitmap;
2691 bm_size = this_bm_size;
2702 if (bm_size >= (numitems - start_pos - 1))
2797 key.u.local_tupdesc = tupdesc;
2800 if (record_table_entry)
2804 record_table_entry);
2831 elog(
ERROR,
"cannot create duplicate shared record typmod");
2839 typmod_table_entry->
typmod = typmod;
2842 typmod_table_entry);
2858 record_table_entry);
2880 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 Assert(condition)
#define FLEXIBLE_ARRAY_MEMBER
#define MemSet(start, val, len)
#define OidIsValid(objectId)
void CreateCacheMemoryContext(void)
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_memcpy(void *dest, const void *src, size_t size, void *arg)
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_seq_init_with_hash_value(HASH_SEQ_STATUS *status, HTAB *hashp, uint32 hashvalue)
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)
uint32 get_hash_value(HTAB *hashp, const void *keyPtr)
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)
static int pg_cmp_u32(uint32 a, uint32 b)
void CacheRegisterRelcacheCallback(RelcacheCallbackFunction func, Datum arg)
void CacheRegisterSyscacheCallback(int cacheid, SyscacheCallbackFunction func, Datum arg)
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
#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)
MemoryContextSwitchTo(old_ctx)
void * stringToNode(const char *str)
#define RelationGetDescr(relation)
void ScanKeyInit(ScanKey entry, AttrNumber attributeNumber, StrategyNumber strategy, RegProcedure procedure, Datum argument)
static pg_noinline void Size size
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::@33 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)
uint32 hashRowType(TupleDesc desc)
TupleDesc CreateTupleDescCopy(TupleDesc tupdesc)
bool equalRowTypes(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)
static uint32 type_cache_syshash(const void *key, Size keysize)
#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