68 #include "utils/fmgroids.h"
99 #define TCFLAGS_HAVE_PG_TYPE_DATA 0x000001
100 #define TCFLAGS_CHECKED_BTREE_OPCLASS 0x000002
101 #define TCFLAGS_CHECKED_HASH_OPCLASS 0x000004
102 #define TCFLAGS_CHECKED_EQ_OPR 0x000008
103 #define TCFLAGS_CHECKED_LT_OPR 0x000010
104 #define TCFLAGS_CHECKED_GT_OPR 0x000020
105 #define TCFLAGS_CHECKED_CMP_PROC 0x000040
106 #define TCFLAGS_CHECKED_HASH_PROC 0x000080
107 #define TCFLAGS_CHECKED_HASH_EXTENDED_PROC 0x000100
108 #define TCFLAGS_CHECKED_ELEM_PROPERTIES 0x000200
109 #define TCFLAGS_HAVE_ELEM_EQUALITY 0x000400
110 #define TCFLAGS_HAVE_ELEM_COMPARE 0x000800
111 #define TCFLAGS_HAVE_ELEM_HASHING 0x001000
112 #define TCFLAGS_HAVE_ELEM_EXTENDED_HASHING 0x002000
113 #define TCFLAGS_CHECKED_FIELD_PROPERTIES 0x004000
114 #define TCFLAGS_HAVE_FIELD_EQUALITY 0x008000
115 #define TCFLAGS_HAVE_FIELD_COMPARE 0x010000
116 #define TCFLAGS_HAVE_FIELD_HASHING 0x020000
117 #define TCFLAGS_HAVE_FIELD_EXTENDED_HASHING 0x040000
118 #define TCFLAGS_CHECKED_DOMAIN_CONSTRAINTS 0x080000
119 #define TCFLAGS_DOMAIN_BASE_IS_COMPOSITE 0x100000
122 #define TCFLAGS_OPERATOR_FLAGS \
123 (~(TCFLAGS_HAVE_PG_TYPE_DATA | \
124 TCFLAGS_CHECKED_DOMAIN_CONSTRAINTS | \
125 TCFLAGS_DOMAIN_BASE_IS_COMPOSITE))
319 static int dcs_cmp(
const void *
a,
const void *
b);
345 static int enum_oid_cmp(
const void *left,
const void *right);
390 int in_progress_offset;
398 ctl.keysize =
sizeof(
Oid);
413 ctl.keysize =
sizeof(
Oid);
457 if (typentry == NULL)
472 (
errcode(ERRCODE_UNDEFINED_OBJECT),
473 errmsg(
"type with OID %u does not exist", type_id)));
475 if (!typtup->typisdefined)
477 (
errcode(ERRCODE_UNDEFINED_OBJECT),
478 errmsg(
"type \"%s\" is only a shell",
494 typentry->
typlen = typtup->typlen;
495 typentry->
typbyval = typtup->typbyval;
496 typentry->
typalign = typtup->typalign;
498 typentry->
typtype = typtup->typtype;
499 typentry->
typrelid = typtup->typrelid;
501 typentry->
typelem = typtup->typelem;
506 if (typentry->
typtype == TYPTYPE_DOMAIN)
526 (
errcode(ERRCODE_UNDEFINED_OBJECT),
527 errmsg(
"type with OID %u does not exist", type_id)));
529 if (!typtup->typisdefined)
531 (
errcode(ERRCODE_UNDEFINED_OBJECT),
532 errmsg(
"type \"%s\" is only a shell",
539 typentry->
typlen = typtup->typlen;
540 typentry->
typbyval = typtup->typbyval;
541 typentry->
typalign = typtup->typalign;
543 typentry->
typtype = typtup->typtype;
544 typentry->
typrelid = typtup->typrelid;
546 typentry->
typelem = typtup->typelem;
655 if (eq_opr == ARRAY_EQ_OP &&
658 else if (eq_opr == RECORD_EQ_OP &&
663 if (typentry->
eq_opr != eq_opr)
666 typentry->
eq_opr = eq_opr;
692 if (lt_opr == ARRAY_LT_OP &&
695 else if (lt_opr == RECORD_LT_OP &&
699 typentry->
lt_opr = lt_opr;
717 if (gt_opr == ARRAY_GT_OP &&
720 else if (gt_opr == RECORD_GT_OP &&
724 typentry->
gt_opr = gt_opr;
742 if (cmp_proc == F_BTARRAYCMP &&
745 else if (cmp_proc == F_BTRECORDCMP &&
780 if (hash_proc == F_HASH_ARRAY &&
783 else if (hash_proc == F_HASH_RECORD &&
786 else if (hash_proc == F_HASH_RANGE &&
793 if (hash_proc == F_HASH_MULTIRANGE &&
829 if (hash_extended_proc == F_HASH_ARRAY_EXTENDED &&
832 else if (hash_extended_proc == F_HASH_RECORD_EXTENDED &&
835 else if (hash_extended_proc == F_HASH_RANGE_EXTENDED &&
842 if (hash_extended_proc == F_HASH_MULTIRANGE_EXTENDED &&
905 typentry->
typtype == TYPTYPE_COMPOSITE)
917 typentry->
typtype == TYPTYPE_RANGE)
930 typentry->
typtype == TYPTYPE_MULTIRANGE)
940 typentry->
typtype == TYPTYPE_DOMAIN)
948 typentry->
typtype == TYPTYPE_DOMAIN)
972 elog(
ERROR,
"invalid typrelid for composite type %u",
1017 elog(
ERROR,
"cache lookup failed for range type %u",
1021 subtypeOid = pg_range->rngsubtype;
1023 opclassOid = pg_range->rngsubopc;
1024 canonicalOid = pg_range->rngcanonical;
1025 subdiffOid = pg_range->rngsubdiff;
1037 elog(
ERROR,
"missing support function %d(%u,%u) in opfamily %u",
1065 elog(
ERROR,
"cache lookup failed for multirange type %u",
1085 bool notNull =
false;
1129 elog(
ERROR,
"cache lookup failed for type %u", typeOid);
1132 if (typTup->typtype != TYPTYPE_DOMAIN)
1140 if (typTup->typnotnull)
1145 Anum_pg_constraint_contypid,
1162 if (
c->contype != CONSTRAINT_CHECK)
1167 conRel->
rd_att, &isNull);
1169 elog(
ERROR,
"domain \"%s\" constraint \"%s\" has NULL conbin",
1181 "Domain constraints",
1222 else if (nccons >= cconslen)
1228 ccons[nccons++] = r;
1253 typeOid = typTup->typbasetype;
1273 "Domain constraints",
1322 return strcmp((*ca)->name, (*cb)->name);
1370 foreach(lc, constraints)
1381 result =
lappend(result, newr);
1444 typentry->
typtype == TYPTYPE_DOMAIN)
1620 if (typentry->
type_id == RECORDOID)
1625 else if (typentry->
typtype == TYPTYPE_COMPOSITE)
1632 if (typentry->
tupDesc == NULL)
1644 for (
i = 0;
i < tupdesc->
natts;
i++)
1649 if (attr->attisdropped)
1670 typentry->
flags |= newflags;
1674 else if (typentry->
typtype == TYPTYPE_DOMAIN)
1692 if (baseentry->
typtype == TYPTYPE_COMPOSITE)
1733 typentry->
typtype == TYPTYPE_RANGE)
1772 if (typentry->
rngtype == NULL &&
1773 typentry->
typtype == TYPTYPE_MULTIRANGE)
1828 if (type_id != RECORDOID)
1836 if (typentry->
tupDesc == NULL && !noError)
1838 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
1839 errmsg(
"type %s is not composite",
1898 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
1899 errmsg(
"record type has not been registered")));
1942 if (tupDesc != NULL)
1980 if (type_id != RECORDOID)
1991 if (typentry->
typtype == TYPTYPE_DOMAIN)
1995 if (typentry->
tupDesc == NULL && !noError)
1997 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
1998 errmsg(
"type %s is not composite",
2004 if (tupDesc != NULL)
2075 if (found && recentry->
tupdesc != NULL)
2086 if (entDesc == NULL)
2134 if (type_id != RECORDOID)
2142 if (typentry->
tupDesc == NULL)
2144 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
2145 errmsg(
"type %s is not composite",
2240 if (tupdesc == NULL)
2251 elog(
ERROR,
"cannot create duplicate shared record typmod");
2257 record_table_key.
shared =
false;
2365 bool hadTupDescOrOpclass;
2370 hadTupDescOrOpclass = (typentry->
tupDesc != NULL) ||
2374 if (typentry->
tupDesc != NULL)
2397 if (hadTupDescOrOpclass)
2435 if (relentry != NULL)
2441 if (typentry != NULL)
2482 if (typentry->
typtype == TYPTYPE_COMPOSITE)
2486 else if (typentry->
typtype == TYPTYPE_DOMAIN)
2625 if (arg < enumdata->bitmap_base)
2628 if (offset > (
Oid) INT_MAX)
2686 if (item1 == NULL || item2 == NULL)
2704 elog(
ERROR,
"enum value %u not found in cache for enum %s",
2707 elog(
ERROR,
"enum value %u not found in cache for enum %s",
2740 if (tcache->
typtype != TYPTYPE_ENUM)
2742 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
2743 errmsg(
"%s is not an enum",
2759 Anum_pg_enum_enumtypid,
2765 EnumTypIdLabelIndexId,
2773 if (numitems >= maxitems)
2778 items[numitems].enum_oid = en->oid;
2779 items[numitems].sort_order = en->enumsortorder;
2805 for (start_pos = 0; start_pos < numitems - 1; start_pos++)
2811 int this_bm_size = 1;
2812 Oid start_oid =
items[start_pos].enum_oid;
2816 for (
i = start_pos + 1;
i < numitems;
i++)
2820 offset =
items[
i].enum_oid - start_oid;
2825 if (
items[
i].sort_order > prev_order)
2827 prev_order =
items[
i].sort_order;
2834 if (this_bm_size > bm_size)
2837 bitmap_base = start_oid;
2838 bitmap = this_bitmap;
2839 bm_size = this_bm_size;
2850 if (bm_size >= (numitems - start_pos - 1))
2945 key.u.local_tupdesc = tupdesc;
2948 if (record_table_entry)
2952 record_table_entry);
2979 elog(
ERROR,
"cannot create duplicate shared record typmod");
2987 typmod_table_entry->
typmod = typmod;
2990 typmod_table_entry);
3006 record_table_entry);
3028 record_table_entry);
3064 if (typentry->
typtype != TYPTYPE_COMPOSITE)
3097 #ifdef USE_ASSERT_CHECKING
3099 bool is_in_progress =
false;
3105 is_in_progress =
true;
3112 if (typentry->
typtype != TYPTYPE_COMPOSITE)
3131 Assert(found || is_in_progress);
3135 #ifdef USE_ASSERT_CHECKING
3142 if (!is_in_progress)
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)
#define INJECTION_POINT(name)
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
dsa_pointer shared_tupdesc
union SharedRecordTableKey::@31 u
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)
static void insert_rel_type_cache_if_needed(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
void AtEOXact_TypeCache(void)
#define TCFLAGS_DOMAIN_BASE_IS_COMPOSITE
static void load_enum_cache_data(TypeCacheEntry *tcache)
static bool record_fields_have_hashing(TypeCacheEntry *typentry)
static HTAB * RelIdToTypeIdCacheHash
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 int in_progress_list_maxlen
static int32 NextRecordTypmod
TupleDesc lookup_rowtype_tupdesc_domain(Oid type_id, int32 typmod, bool noError)
static Oid * in_progress_list
static const dshash_parameters srtr_typmod_table_params
static void delete_rel_type_cache_if_needed(TypeCacheEntry *typentry)
#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
static void InvalidateCompositeTypeCacheEntry(TypeCacheEntry *typentry)
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 int in_progress_list_len
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 RelIdToTypeIdCacheEntry RelIdToTypeIdCacheEntry
struct RecordCacheEntry RecordCacheEntry
void AtEOSubXact_TypeCache(void)
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 finalize_in_progress_typentries(void)
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