LCOV - differential code coverage report
Current view: top level - src/backend/utils/cache - typcache.c (source / functions) Coverage Total Hit LBC UBC GBC GNC CBC DCB
Current: Differential Code Coverage 16@8cea358b128 vs 17@8cea358b128 Lines: 88.3 % 920 812 1 107 1 6 805 9
Current Date: 2024-04-14 14:21:10 Functions: 96.4 % 55 53 2 7 46
Baseline: 16@8cea358b128 Branches: 70.5 % 634 447 1 186 1 446
Baseline Date: 2024-04-14 14:21:09 Line coverage date bins:
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed [..60] days: 100.0 % 5 5 5
(60,120] days: 100.0 % 1 1 1
(180,240] days: 92.9 % 14 13 1 13
(240..) days: 88.1 % 900 793 1 106 1 792
Function coverage date bins:
(240..) days: 96.4 % 55 53 2 7 46
Branch coverage date bins:
(180,240] days: 66.7 % 6 4 2 4
(240..) days: 70.5 % 628 443 1 184 1 442

 Age         Owner                    Branch data    TLA  Line data    Source code
                                  1                 :                : /*-------------------------------------------------------------------------
                                  2                 :                :  *
                                  3                 :                :  * typcache.c
                                  4                 :                :  *    POSTGRES type cache code
                                  5                 :                :  *
                                  6                 :                :  * The type cache exists to speed lookup of certain information about data
                                  7                 :                :  * types that is not directly available from a type's pg_type row.  For
                                  8                 :                :  * example, we use a type's default btree opclass, or the default hash
                                  9                 :                :  * opclass if no btree opclass exists, to determine which operators should
                                 10                 :                :  * be used for grouping and sorting the type (GROUP BY, ORDER BY ASC/DESC).
                                 11                 :                :  *
                                 12                 :                :  * Several seemingly-odd choices have been made to support use of the type
                                 13                 :                :  * cache by generic array and record handling routines, such as array_eq(),
                                 14                 :                :  * record_cmp(), and hash_array().  Because those routines are used as index
                                 15                 :                :  * support operations, they cannot leak memory.  To allow them to execute
                                 16                 :                :  * efficiently, all information that they would like to re-use across calls
                                 17                 :                :  * is kept in the type cache.
                                 18                 :                :  *
                                 19                 :                :  * Once created, a type cache entry lives as long as the backend does, so
                                 20                 :                :  * there is no need for a call to release a cache entry.  If the type is
                                 21                 :                :  * dropped, the cache entry simply becomes wasted storage.  This is not
                                 22                 :                :  * expected to happen often, and assuming that typcache entries are good
                                 23                 :                :  * permanently allows caching pointers to them in long-lived places.
                                 24                 :                :  *
                                 25                 :                :  * We have some provisions for updating cache entries if the stored data
                                 26                 :                :  * becomes obsolete.  Core data extracted from the pg_type row is updated
                                 27                 :                :  * when we detect updates to pg_type.  Information dependent on opclasses is
                                 28                 :                :  * cleared if we detect updates to pg_opclass.  We also support clearing the
                                 29                 :                :  * tuple descriptor and operator/function parts of a rowtype's cache entry,
                                 30                 :                :  * since those may need to change as a consequence of ALTER TABLE.  Domain
                                 31                 :                :  * constraint changes are also tracked properly.
                                 32                 :                :  *
                                 33                 :                :  *
                                 34                 :                :  * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
                                 35                 :                :  * Portions Copyright (c) 1994, Regents of the University of California
                                 36                 :                :  *
                                 37                 :                :  * IDENTIFICATION
                                 38                 :                :  *    src/backend/utils/cache/typcache.c
                                 39                 :                :  *
                                 40                 :                :  *-------------------------------------------------------------------------
                                 41                 :                :  */
                                 42                 :                : #include "postgres.h"
                                 43                 :                : 
                                 44                 :                : #include <limits.h>
                                 45                 :                : 
                                 46                 :                : #include "access/hash.h"
                                 47                 :                : #include "access/htup_details.h"
                                 48                 :                : #include "access/nbtree.h"
                                 49                 :                : #include "access/parallel.h"
                                 50                 :                : #include "access/relation.h"
                                 51                 :                : #include "access/session.h"
                                 52                 :                : #include "access/table.h"
                                 53                 :                : #include "catalog/pg_am.h"
                                 54                 :                : #include "catalog/pg_constraint.h"
                                 55                 :                : #include "catalog/pg_enum.h"
                                 56                 :                : #include "catalog/pg_operator.h"
                                 57                 :                : #include "catalog/pg_range.h"
                                 58                 :                : #include "catalog/pg_type.h"
                                 59                 :                : #include "commands/defrem.h"
                                 60                 :                : #include "common/int.h"
                                 61                 :                : #include "executor/executor.h"
                                 62                 :                : #include "lib/dshash.h"
                                 63                 :                : #include "optimizer/optimizer.h"
                                 64                 :                : #include "port/pg_bitutils.h"
                                 65                 :                : #include "storage/lwlock.h"
                                 66                 :                : #include "utils/builtins.h"
                                 67                 :                : #include "utils/catcache.h"
                                 68                 :                : #include "utils/fmgroids.h"
                                 69                 :                : #include "utils/inval.h"
                                 70                 :                : #include "utils/lsyscache.h"
                                 71                 :                : #include "utils/memutils.h"
                                 72                 :                : #include "utils/rel.h"
                                 73                 :                : #include "utils/syscache.h"
                                 74                 :                : #include "utils/typcache.h"
                                 75                 :                : 
                                 76                 :                : 
                                 77                 :                : /* The main type cache hashtable searched by lookup_type_cache */
                                 78                 :                : static HTAB *TypeCacheHash = NULL;
                                 79                 :                : 
                                 80                 :                : /* List of type cache entries for domain types */
                                 81                 :                : static TypeCacheEntry *firstDomainTypeEntry = NULL;
                                 82                 :                : 
                                 83                 :                : /* Private flag bits in the TypeCacheEntry.flags field */
                                 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
                                105                 :                : 
                                106                 :                : /* The flags associated with equality/comparison/hashing are all but these: */
                                107                 :                : #define TCFLAGS_OPERATOR_FLAGS \
                                108                 :                :     (~(TCFLAGS_HAVE_PG_TYPE_DATA | \
                                109                 :                :        TCFLAGS_CHECKED_DOMAIN_CONSTRAINTS | \
                                110                 :                :        TCFLAGS_DOMAIN_BASE_IS_COMPOSITE))
                                111                 :                : 
                                112                 :                : /*
                                113                 :                :  * Data stored about a domain type's constraints.  Note that we do not create
                                114                 :                :  * this struct for the common case of a constraint-less domain; we just set
                                115                 :                :  * domainData to NULL to indicate that.
                                116                 :                :  *
                                117                 :                :  * Within a DomainConstraintCache, we store expression plan trees, but the
                                118                 :                :  * check_exprstate fields of the DomainConstraintState nodes are just NULL.
                                119                 :                :  * When needed, expression evaluation nodes are built by flat-copying the
                                120                 :                :  * DomainConstraintState nodes and applying ExecInitExpr to check_expr.
                                121                 :                :  * Such a node tree is not part of the DomainConstraintCache, but is
                                122                 :                :  * considered to belong to a DomainConstraintRef.
                                123                 :                :  */
                                124                 :                : struct DomainConstraintCache
                                125                 :                : {
                                126                 :                :     List       *constraints;    /* list of DomainConstraintState nodes */
                                127                 :                :     MemoryContext dccContext;   /* memory context holding all associated data */
                                128                 :                :     long        dccRefCount;    /* number of references to this struct */
                                129                 :                : };
                                130                 :                : 
                                131                 :                : /* Private information to support comparisons of enum values */
                                132                 :                : typedef struct
                                133                 :                : {
                                134                 :                :     Oid         enum_oid;       /* OID of one enum value */
                                135                 :                :     float4      sort_order;     /* its sort position */
                                136                 :                : } EnumItem;
                                137                 :                : 
                                138                 :                : typedef struct TypeCacheEnumData
                                139                 :                : {
                                140                 :                :     Oid         bitmap_base;    /* OID corresponding to bit 0 of bitmapset */
                                141                 :                :     Bitmapset  *sorted_values;  /* Set of OIDs known to be in order */
                                142                 :                :     int         num_values;     /* total number of values in enum */
                                143                 :                :     EnumItem    enum_values[FLEXIBLE_ARRAY_MEMBER];
                                144                 :                : } TypeCacheEnumData;
                                145                 :                : 
                                146                 :                : /*
                                147                 :                :  * We use a separate table for storing the definitions of non-anonymous
                                148                 :                :  * record types.  Once defined, a record type will be remembered for the
                                149                 :                :  * life of the backend.  Subsequent uses of the "same" record type (where
                                150                 :                :  * sameness means equalRowTypes) will refer to the existing table entry.
                                151                 :                :  *
                                152                 :                :  * Stored record types are remembered in a linear array of TupleDescs,
                                153                 :                :  * which can be indexed quickly with the assigned typmod.  There is also
                                154                 :                :  * a hash table to speed searches for matching TupleDescs.
                                155                 :                :  */
                                156                 :                : 
                                157                 :                : typedef struct RecordCacheEntry
                                158                 :                : {
                                159                 :                :     TupleDesc   tupdesc;
                                160                 :                : } RecordCacheEntry;
                                161                 :                : 
                                162                 :                : /*
                                163                 :                :  * To deal with non-anonymous record types that are exchanged by backends
                                164                 :                :  * involved in a parallel query, we also need a shared version of the above.
                                165                 :                :  */
                                166                 :                : struct SharedRecordTypmodRegistry
                                167                 :                : {
                                168                 :                :     /* A hash table for finding a matching TupleDesc. */
                                169                 :                :     dshash_table_handle record_table_handle;
                                170                 :                :     /* A hash table for finding a TupleDesc by typmod. */
                                171                 :                :     dshash_table_handle typmod_table_handle;
                                172                 :                :     /* A source of new record typmod numbers. */
                                173                 :                :     pg_atomic_uint32 next_typmod;
                                174                 :                : };
                                175                 :                : 
                                176                 :                : /*
                                177                 :                :  * When using shared tuple descriptors as hash table keys we need a way to be
                                178                 :                :  * able to search for an equal shared TupleDesc using a backend-local
                                179                 :                :  * TupleDesc.  So we use this type which can hold either, and hash and compare
                                180                 :                :  * functions that know how to handle both.
                                181                 :                :  */
                                182                 :                : typedef struct SharedRecordTableKey
                                183                 :                : {
                                184                 :                :     union
                                185                 :                :     {
                                186                 :                :         TupleDesc   local_tupdesc;
                                187                 :                :         dsa_pointer shared_tupdesc;
                                188                 :                :     }           u;
                                189                 :                :     bool        shared;
                                190                 :                : } SharedRecordTableKey;
                                191                 :                : 
                                192                 :                : /*
                                193                 :                :  * The shared version of RecordCacheEntry.  This lets us look up a typmod
                                194                 :                :  * using a TupleDesc which may be in local or shared memory.
                                195                 :                :  */
                                196                 :                : typedef struct SharedRecordTableEntry
                                197                 :                : {
                                198                 :                :     SharedRecordTableKey key;
                                199                 :                : } SharedRecordTableEntry;
                                200                 :                : 
                                201                 :                : /*
                                202                 :                :  * An entry in SharedRecordTypmodRegistry's typmod table.  This lets us look
                                203                 :                :  * up a TupleDesc in shared memory using a typmod.
                                204                 :                :  */
                                205                 :                : typedef struct SharedTypmodTableEntry
                                206                 :                : {
                                207                 :                :     uint32      typmod;
                                208                 :                :     dsa_pointer shared_tupdesc;
                                209                 :                : } SharedTypmodTableEntry;
                                210                 :                : 
                                211                 :                : /*
                                212                 :                :  * A comparator function for SharedRecordTableKey.
                                213                 :                :  */
                                214                 :                : static int
 2404 andres@anarazel.de        215                 :CBC          60 : shared_record_table_compare(const void *a, const void *b, size_t size,
                                216                 :                :                             void *arg)
                                217                 :                : {
                                218                 :             60 :     dsa_area   *area = (dsa_area *) arg;
                                219                 :             60 :     SharedRecordTableKey *k1 = (SharedRecordTableKey *) a;
                                220                 :             60 :     SharedRecordTableKey *k2 = (SharedRecordTableKey *) b;
                                221                 :                :     TupleDesc   t1;
                                222                 :                :     TupleDesc   t2;
                                223                 :                : 
                                224         [ -  + ]:             60 :     if (k1->shared)
 2403 tgl@sss.pgh.pa.us         225                 :UBC           0 :         t1 = (TupleDesc) dsa_get_address(area, k1->u.shared_tupdesc);
                                226                 :                :     else
 2403 tgl@sss.pgh.pa.us         227                 :CBC          60 :         t1 = k1->u.local_tupdesc;
                                228                 :                : 
 2404 andres@anarazel.de        229         [ +  - ]:             60 :     if (k2->shared)
 2403 tgl@sss.pgh.pa.us         230                 :             60 :         t2 = (TupleDesc) dsa_get_address(area, k2->u.shared_tupdesc);
                                231                 :                :     else
 2403 tgl@sss.pgh.pa.us         232                 :UBC           0 :         t2 = k2->u.local_tupdesc;
                                233                 :                : 
   28 peter@eisentraut.org      234                 :GNC          60 :     return equalRowTypes(t1, t2) ? 0 : 1;
                                235                 :                : }
                                236                 :                : 
                                237                 :                : /*
                                238                 :                :  * A hash function for SharedRecordTableKey.
                                239                 :                :  */
                                240                 :                : static uint32
 2404 andres@anarazel.de        241                 :CBC         110 : shared_record_table_hash(const void *a, size_t size, void *arg)
                                242                 :                : {
                                243                 :            110 :     dsa_area   *area = (dsa_area *) arg;
                                244                 :            110 :     SharedRecordTableKey *k = (SharedRecordTableKey *) a;
                                245                 :                :     TupleDesc   t;
                                246                 :                : 
                                247         [ -  + ]:            110 :     if (k->shared)
 2403 tgl@sss.pgh.pa.us         248                 :UBC           0 :         t = (TupleDesc) dsa_get_address(area, k->u.shared_tupdesc);
                                249                 :                :     else
 2403 tgl@sss.pgh.pa.us         250                 :CBC         110 :         t = k->u.local_tupdesc;
                                251                 :                : 
   28 peter@eisentraut.org      252                 :GNC         110 :     return hashRowType(t);
                                253                 :                : }
                                254                 :                : 
                                255                 :                : /* Parameters for SharedRecordTypmodRegistry's TupleDesc table. */
                                256                 :                : static const dshash_parameters srtr_record_table_params = {
                                257                 :                :     sizeof(SharedRecordTableKey),   /* unused */
                                258                 :                :     sizeof(SharedRecordTableEntry),
                                259                 :                :     shared_record_table_compare,
                                260                 :                :     shared_record_table_hash,
                                261                 :                :     dshash_memcpy,
                                262                 :                :     LWTRANCHE_PER_SESSION_RECORD_TYPE
                                263                 :                : };
                                264                 :                : 
                                265                 :                : /* Parameters for SharedRecordTypmodRegistry's typmod hash table. */
                                266                 :                : static const dshash_parameters srtr_typmod_table_params = {
                                267                 :                :     sizeof(uint32),
                                268                 :                :     sizeof(SharedTypmodTableEntry),
                                269                 :                :     dshash_memcmp,
                                270                 :                :     dshash_memhash,
                                271                 :                :     dshash_memcpy,
                                272                 :                :     LWTRANCHE_PER_SESSION_RECORD_TYPMOD
                                273                 :                : };
                                274                 :                : 
                                275                 :                : /* hashtable for recognizing registered record types */
                                276                 :                : static HTAB *RecordCacheHash = NULL;
                                277                 :                : 
                                278                 :                : typedef struct RecordCacheArrayEntry
                                279                 :                : {
                                280                 :                :     uint64      id;
                                281                 :                :     TupleDesc   tupdesc;
                                282                 :                : } RecordCacheArrayEntry;
                                283                 :                : 
                                284                 :                : /* array of info about registered record types, indexed by assigned typmod */
                                285                 :                : static RecordCacheArrayEntry *RecordCacheArray = NULL;
                                286                 :                : static int32 RecordCacheArrayLen = 0;   /* allocated length of above array */
                                287                 :                : static int32 NextRecordTypmod = 0;  /* number of entries used */
                                288                 :                : 
                                289                 :                : /*
                                290                 :                :  * Process-wide counter for generating unique tupledesc identifiers.
                                291                 :                :  * Zero and one (INVALID_TUPLEDESC_IDENTIFIER) aren't allowed to be chosen
                                292                 :                :  * as identifiers, so we start the counter at INVALID_TUPLEDESC_IDENTIFIER.
                                293                 :                :  */
                                294                 :                : static uint64 tupledesc_id_counter = INVALID_TUPLEDESC_IDENTIFIER;
                                295                 :                : 
                                296                 :                : static void load_typcache_tupdesc(TypeCacheEntry *typentry);
                                297                 :                : static void load_rangetype_info(TypeCacheEntry *typentry);
                                298                 :                : static void load_multirangetype_info(TypeCacheEntry *typentry);
                                299                 :                : static void load_domaintype_info(TypeCacheEntry *typentry);
                                300                 :                : static int  dcs_cmp(const void *a, const void *b);
                                301                 :                : static void decr_dcc_refcount(DomainConstraintCache *dcc);
                                302                 :                : static void dccref_deletion_callback(void *arg);
                                303                 :                : static List *prep_domain_constraints(List *constraints, MemoryContext execctx);
                                304                 :                : static bool array_element_has_equality(TypeCacheEntry *typentry);
                                305                 :                : static bool array_element_has_compare(TypeCacheEntry *typentry);
                                306                 :                : static bool array_element_has_hashing(TypeCacheEntry *typentry);
                                307                 :                : static bool array_element_has_extended_hashing(TypeCacheEntry *typentry);
                                308                 :                : static void cache_array_element_properties(TypeCacheEntry *typentry);
                                309                 :                : static bool record_fields_have_equality(TypeCacheEntry *typentry);
                                310                 :                : static bool record_fields_have_compare(TypeCacheEntry *typentry);
                                311                 :                : static bool record_fields_have_hashing(TypeCacheEntry *typentry);
                                312                 :                : static bool record_fields_have_extended_hashing(TypeCacheEntry *typentry);
                                313                 :                : static void cache_record_field_properties(TypeCacheEntry *typentry);
                                314                 :                : static bool range_element_has_hashing(TypeCacheEntry *typentry);
                                315                 :                : static bool range_element_has_extended_hashing(TypeCacheEntry *typentry);
                                316                 :                : static void cache_range_element_properties(TypeCacheEntry *typentry);
                                317                 :                : static bool multirange_element_has_hashing(TypeCacheEntry *typentry);
                                318                 :                : static bool multirange_element_has_extended_hashing(TypeCacheEntry *typentry);
                                319                 :                : static void cache_multirange_element_properties(TypeCacheEntry *typentry);
                                320                 :                : static void TypeCacheRelCallback(Datum arg, Oid relid);
                                321                 :                : static void TypeCacheTypCallback(Datum arg, int cacheid, uint32 hashvalue);
                                322                 :                : static void TypeCacheOpcCallback(Datum arg, int cacheid, uint32 hashvalue);
                                323                 :                : static void TypeCacheConstrCallback(Datum arg, int cacheid, uint32 hashvalue);
                                324                 :                : static void load_enum_cache_data(TypeCacheEntry *tcache);
                                325                 :                : static EnumItem *find_enumitem(TypeCacheEnumData *enumdata, Oid arg);
                                326                 :                : static int  enum_oid_cmp(const void *left, const void *right);
                                327                 :                : static void shared_record_typmod_registry_detach(dsm_segment *segment,
                                328                 :                :                                                  Datum datum);
                                329                 :                : static TupleDesc find_or_make_matching_shared_tupledesc(TupleDesc tupdesc);
                                330                 :                : static dsa_pointer share_tupledesc(dsa_area *area, TupleDesc tupdesc,
                                331                 :                :                                    uint32 typmod);
                                332                 :                : 
                                333                 :                : 
                                334                 :                : /*
                                335                 :                :  * lookup_type_cache
                                336                 :                :  *
                                337                 :                :  * Fetch the type cache entry for the specified datatype, and make sure that
                                338                 :                :  * all the fields requested by bits in 'flags' are valid.
                                339                 :                :  *
                                340                 :                :  * The result is never NULL --- we will ereport() if the passed type OID is
                                341                 :                :  * invalid.  Note however that we may fail to find one or more of the
                                342                 :                :  * values requested by 'flags'; the caller needs to check whether the fields
                                343                 :                :  * are InvalidOid or not.
                                344                 :                :  */
                                345                 :                : TypeCacheEntry *
 7546 tgl@sss.pgh.pa.us         346                 :CBC      309951 : lookup_type_cache(Oid type_id, int flags)
                                347                 :                : {
                                348                 :                :     TypeCacheEntry *typentry;
                                349                 :                :     bool        found;
                                350                 :                : 
                                351         [ +  + ]:         309951 :     if (TypeCacheHash == NULL)
                                352                 :                :     {
                                353                 :                :         /* First time through: initialize the hash table */
                                354                 :                :         HASHCTL     ctl;
                                355                 :                : 
                                356                 :           3361 :         ctl.keysize = sizeof(Oid);
                                357                 :           3361 :         ctl.entrysize = sizeof(TypeCacheEntry);
                                358                 :           3361 :         TypeCacheHash = hash_create("Type information cache", 64,
                                359                 :                :                                     &ctl, HASH_ELEM | HASH_BLOBS);
                                360                 :                : 
                                361                 :                :         /* Also set up callbacks for SI invalidations */
 4973                           362                 :           3361 :         CacheRegisterRelcacheCallback(TypeCacheRelCallback, (Datum) 0);
 1500                           363                 :           3361 :         CacheRegisterSyscacheCallback(TYPEOID, TypeCacheTypCallback, (Datum) 0);
 3425                           364                 :           3361 :         CacheRegisterSyscacheCallback(CLAOID, TypeCacheOpcCallback, (Datum) 0);
 3332                           365                 :           3361 :         CacheRegisterSyscacheCallback(CONSTROID, TypeCacheConstrCallback, (Datum) 0);
                                366                 :                : 
                                367                 :                :         /* Also make sure CacheMemoryContext exists */
 5222                           368         [ -  + ]:           3361 :         if (!CacheMemoryContext)
 5222 tgl@sss.pgh.pa.us         369                 :UBC           0 :             CreateCacheMemoryContext();
                                370                 :                :     }
                                371                 :                : 
                                372                 :                :     /* Try to look up an existing entry */
 7546 tgl@sss.pgh.pa.us         373                 :CBC      309951 :     typentry = (TypeCacheEntry *) hash_search(TypeCacheHash,
                                374                 :                :                                               &type_id,
                                375                 :                :                                               HASH_FIND, NULL);
                                376         [ +  + ]:         309951 :     if (typentry == NULL)
                                377                 :                :     {
                                378                 :                :         /*
                                379                 :                :          * If we didn't find one, we want to make one.  But first look up the
                                380                 :                :          * pg_type row, just to make sure we don't make a cache entry for an
                                381                 :                :          * invalid type OID.  If the type OID is not valid, present a
                                382                 :                :          * user-facing error, since some code paths such as domain_in() allow
                                383                 :                :          * this function to be reached with a user-supplied OID.
                                384                 :                :          */
                                385                 :                :         HeapTuple   tp;
                                386                 :                :         Form_pg_type typtup;
                                387                 :                : 
 5173 rhaas@postgresql.org      388                 :          14487 :         tp = SearchSysCache1(TYPEOID, ObjectIdGetDatum(type_id));
 7318 tgl@sss.pgh.pa.us         389         [ -  + ]:          14487 :         if (!HeapTupleIsValid(tp))
 2774 tgl@sss.pgh.pa.us         390         [ #  # ]:UBC           0 :             ereport(ERROR,
                                391                 :                :                     (errcode(ERRCODE_UNDEFINED_OBJECT),
                                392                 :                :                      errmsg("type with OID %u does not exist", type_id)));
 7318 tgl@sss.pgh.pa.us         393                 :CBC       14487 :         typtup = (Form_pg_type) GETSTRUCT(tp);
                                394         [ -  + ]:          14487 :         if (!typtup->typisdefined)
 7318 tgl@sss.pgh.pa.us         395         [ #  # ]:UBC           0 :             ereport(ERROR,
                                396                 :                :                     (errcode(ERRCODE_UNDEFINED_OBJECT),
                                397                 :                :                      errmsg("type \"%s\" is only a shell",
                                398                 :                :                             NameStr(typtup->typname))));
                                399                 :                : 
                                400                 :                :         /* Now make the typcache entry */
 7546 tgl@sss.pgh.pa.us         401                 :CBC       14487 :         typentry = (TypeCacheEntry *) hash_search(TypeCacheHash,
                                402                 :                :                                                   &type_id,
                                403                 :                :                                                   HASH_ENTER, &found);
                                404         [ -  + ]:          14487 :         Assert(!found);         /* it wasn't there a moment ago */
                                405                 :                : 
                                406   [ +  -  +  -  :         898194 :         MemSet(typentry, 0, sizeof(TypeCacheEntry));
                                     +  -  +  -  +  
                                                 + ]
                                407                 :                : 
                                408                 :                :         /* These fields can never change, by definition */
                                409                 :          14487 :         typentry->type_id = type_id;
 1500                           410                 :          14487 :         typentry->type_id_hash = GetSysCacheHashValue1(TYPEOID,
                                411                 :                :                                                        ObjectIdGetDatum(type_id));
                                412                 :                : 
                                413                 :                :         /* Keep this part in sync with the code below */
 7318                           414                 :          14487 :         typentry->typlen = typtup->typlen;
                                415                 :          14487 :         typentry->typbyval = typtup->typbyval;
                                416                 :          14487 :         typentry->typalign = typtup->typalign;
 4534                           417                 :          14487 :         typentry->typstorage = typtup->typstorage;
 7318                           418                 :          14487 :         typentry->typtype = typtup->typtype;
                                419                 :          14487 :         typentry->typrelid = typtup->typrelid;
 1222                           420                 :          14487 :         typentry->typsubscript = typtup->typsubscript;
 2341                           421                 :          14487 :         typentry->typelem = typtup->typelem;
 1948                           422                 :          14487 :         typentry->typcollation = typtup->typcollation;
 1500                           423                 :          14487 :         typentry->flags |= TCFLAGS_HAVE_PG_TYPE_DATA;
                                424                 :                : 
                                425                 :                :         /* If it's a domain, immediately thread it into the domain cache list */
 3332                           426         [ +  + ]:          14487 :         if (typentry->typtype == TYPTYPE_DOMAIN)
                                427                 :                :         {
                                428                 :            652 :             typentry->nextDomain = firstDomainTypeEntry;
                                429                 :            652 :             firstDomainTypeEntry = typentry;
                                430                 :                :         }
                                431                 :                : 
 7318                           432                 :          14487 :         ReleaseSysCache(tp);
                                433                 :                :     }
 1500                           434         [ +  + ]:         295464 :     else if (!(typentry->flags & TCFLAGS_HAVE_PG_TYPE_DATA))
                                435                 :                :     {
                                436                 :                :         /*
                                437                 :                :          * We have an entry, but its pg_type row got changed, so reload the
                                438                 :                :          * data obtained directly from pg_type.
                                439                 :                :          */
                                440                 :                :         HeapTuple   tp;
                                441                 :                :         Form_pg_type typtup;
                                442                 :                : 
                                443                 :            213 :         tp = SearchSysCache1(TYPEOID, ObjectIdGetDatum(type_id));
                                444         [ -  + ]:            213 :         if (!HeapTupleIsValid(tp))
 1500 tgl@sss.pgh.pa.us         445         [ #  # ]:UBC           0 :             ereport(ERROR,
                                446                 :                :                     (errcode(ERRCODE_UNDEFINED_OBJECT),
                                447                 :                :                      errmsg("type with OID %u does not exist", type_id)));
 1500 tgl@sss.pgh.pa.us         448                 :CBC         213 :         typtup = (Form_pg_type) GETSTRUCT(tp);
                                449         [ -  + ]:            213 :         if (!typtup->typisdefined)
 1500 tgl@sss.pgh.pa.us         450         [ #  # ]:UBC           0 :             ereport(ERROR,
                                451                 :                :                     (errcode(ERRCODE_UNDEFINED_OBJECT),
                                452                 :                :                      errmsg("type \"%s\" is only a shell",
                                453                 :                :                             NameStr(typtup->typname))));
                                454                 :                : 
                                455                 :                :         /*
                                456                 :                :          * Keep this part in sync with the code above.  Many of these fields
                                457                 :                :          * shouldn't ever change, particularly typtype, but copy 'em anyway.
                                458                 :                :          */
 1500 tgl@sss.pgh.pa.us         459                 :CBC         213 :         typentry->typlen = typtup->typlen;
                                460                 :            213 :         typentry->typbyval = typtup->typbyval;
                                461                 :            213 :         typentry->typalign = typtup->typalign;
                                462                 :            213 :         typentry->typstorage = typtup->typstorage;
                                463                 :            213 :         typentry->typtype = typtup->typtype;
                                464                 :            213 :         typentry->typrelid = typtup->typrelid;
 1222                           465                 :            213 :         typentry->typsubscript = typtup->typsubscript;
 1500                           466                 :            213 :         typentry->typelem = typtup->typelem;
                                467                 :            213 :         typentry->typcollation = typtup->typcollation;
                                468                 :            213 :         typentry->flags |= TCFLAGS_HAVE_PG_TYPE_DATA;
                                469                 :                : 
                                470                 :            213 :         ReleaseSysCache(tp);
                                471                 :                :     }
                                472                 :                : 
                                473                 :                :     /*
                                474                 :                :      * Look up opclasses if we haven't already and any dependent info is
                                475                 :                :      * requested.
                                476                 :                :      */
 7318                           477         [ +  + ]:         309951 :     if ((flags & (TYPECACHE_EQ_OPR | TYPECACHE_LT_OPR | TYPECACHE_GT_OPR |
                                478                 :                :                   TYPECACHE_CMP_PROC |
                                479                 :                :                   TYPECACHE_EQ_OPR_FINFO | TYPECACHE_CMP_PROC_FINFO |
 6322                           480                 :         193817 :                   TYPECACHE_BTREE_OPFAMILY)) &&
 3425                           481         [ +  + ]:         193817 :         !(typentry->flags & TCFLAGS_CHECKED_BTREE_OPCLASS))
                                482                 :                :     {
                                483                 :                :         Oid         opclass;
                                484                 :                : 
 6322                           485                 :          12559 :         opclass = GetDefaultOpClass(type_id, BTREE_AM_OID);
                                486         [ +  + ]:          12559 :         if (OidIsValid(opclass))
                                487                 :                :         {
                                488                 :          12164 :             typentry->btree_opf = get_opclass_family(opclass);
                                489                 :          12164 :             typentry->btree_opintype = get_opclass_input_type(opclass);
                                490                 :                :         }
                                491                 :                :         else
                                492                 :                :         {
 3425                           493                 :            395 :             typentry->btree_opf = typentry->btree_opintype = InvalidOid;
                                494                 :                :         }
                                495                 :                : 
                                496                 :                :         /*
                                497                 :                :          * Reset information derived from btree opclass.  Note in particular
                                498                 :                :          * that we'll redetermine the eq_opr even if we previously found one;
                                499                 :                :          * this matters in case a btree opclass has been added to a type that
                                500                 :                :          * previously had only a hash opclass.
                                501                 :                :          */
                                502                 :          12559 :         typentry->flags &= ~(TCFLAGS_CHECKED_EQ_OPR |
                                503                 :                :                              TCFLAGS_CHECKED_LT_OPR |
                                504                 :                :                              TCFLAGS_CHECKED_GT_OPR |
                                505                 :                :                              TCFLAGS_CHECKED_CMP_PROC);
                                506                 :          12559 :         typentry->flags |= TCFLAGS_CHECKED_BTREE_OPCLASS;
                                507                 :                :     }
                                508                 :                : 
                                509                 :                :     /*
                                510                 :                :      * If we need to look up equality operator, and there's no btree opclass,
                                511                 :                :      * force lookup of hash opclass.
                                512                 :                :      */
                                513         [ +  + ]:         309951 :     if ((flags & (TYPECACHE_EQ_OPR | TYPECACHE_EQ_OPR_FINFO)) &&
                                514         [ +  + ]:         182184 :         !(typentry->flags & TCFLAGS_CHECKED_EQ_OPR) &&
                                515         [ +  + ]:          12457 :         typentry->btree_opf == InvalidOid)
                                516                 :            395 :         flags |= TYPECACHE_HASH_OPFAMILY;
                                517                 :                : 
 4915                           518         [ +  + ]:         309951 :     if ((flags & (TYPECACHE_HASH_PROC | TYPECACHE_HASH_PROC_FINFO |
                                519                 :                :                   TYPECACHE_HASH_EXTENDED_PROC |
                                520                 :                :                   TYPECACHE_HASH_EXTENDED_PROC_FINFO |
                                521                 :         127418 :                   TYPECACHE_HASH_OPFAMILY)) &&
 3425                           522         [ +  + ]:         127418 :         !(typentry->flags & TCFLAGS_CHECKED_HASH_OPCLASS))
                                523                 :                :     {
                                524                 :                :         Oid         opclass;
                                525                 :                : 
 4915                           526                 :           9366 :         opclass = GetDefaultOpClass(type_id, HASH_AM_OID);
                                527         [ +  + ]:           9366 :         if (OidIsValid(opclass))
                                528                 :                :         {
                                529                 :           9245 :             typentry->hash_opf = get_opclass_family(opclass);
                                530                 :           9245 :             typentry->hash_opintype = get_opclass_input_type(opclass);
                                531                 :                :         }
                                532                 :                :         else
                                533                 :                :         {
 3425                           534                 :            121 :             typentry->hash_opf = typentry->hash_opintype = InvalidOid;
                                535                 :                :         }
                                536                 :                : 
                                537                 :                :         /*
                                538                 :                :          * Reset information derived from hash opclass.  We do *not* reset the
                                539                 :                :          * eq_opr; if we already found one from the btree opclass, that
                                540                 :                :          * decision is still good.
                                541                 :                :          */
 2368                           542                 :           9366 :         typentry->flags &= ~(TCFLAGS_CHECKED_HASH_PROC |
                                543                 :                :                              TCFLAGS_CHECKED_HASH_EXTENDED_PROC);
 3425                           544                 :           9366 :         typentry->flags |= TCFLAGS_CHECKED_HASH_OPCLASS;
                                545                 :                :     }
                                546                 :                : 
                                547                 :                :     /*
                                548                 :                :      * Look for requested operators and functions, if we haven't already.
                                549                 :                :      */
 7546                           550         [ +  + ]:         309951 :     if ((flags & (TYPECACHE_EQ_OPR | TYPECACHE_EQ_OPR_FINFO)) &&
 3425                           551         [ +  + ]:         182184 :         !(typentry->flags & TCFLAGS_CHECKED_EQ_OPR))
                                552                 :                :     {
 4693 bruce@momjian.us          553                 :          12457 :         Oid         eq_opr = InvalidOid;
                                554                 :                : 
 6322 tgl@sss.pgh.pa.us         555         [ +  + ]:          12457 :         if (typentry->btree_opf != InvalidOid)
 4699                           556                 :          12062 :             eq_opr = get_opfamily_member(typentry->btree_opf,
                                557                 :                :                                          typentry->btree_opintype,
                                558                 :                :                                          typentry->btree_opintype,
                                559                 :                :                                          BTEqualStrategyNumber);
                                560         [ +  + ]:          12457 :         if (eq_opr == InvalidOid &&
 6322                           561         [ +  + ]:            395 :             typentry->hash_opf != InvalidOid)
 4699                           562                 :            304 :             eq_opr = get_opfamily_member(typentry->hash_opf,
                                563                 :                :                                          typentry->hash_opintype,
                                564                 :                :                                          typentry->hash_opintype,
                                565                 :                :                                          HTEqualStrategyNumber);
                                566                 :                : 
                                567                 :                :         /*
                                568                 :                :          * If the proposed equality operator is array_eq or record_eq, check
                                569                 :                :          * to see if the element type or column types support equality.  If
                                570                 :                :          * not, array_eq or record_eq would fail at runtime, so we don't want
                                571                 :                :          * to report that the type has equality.  (We can omit similar
                                572                 :                :          * checking for ranges and multiranges because ranges can't be created
                                573                 :                :          * in the first place unless their subtypes support equality.)
                                574                 :                :          */
                                575         [ +  + ]:          12457 :         if (eq_opr == ARRAY_EQ_OP &&
                                576         [ +  + ]:           1138 :             !array_element_has_equality(typentry))
                                577                 :            133 :             eq_opr = InvalidOid;
                                578         [ +  + ]:          12324 :         else if (eq_opr == RECORD_EQ_OP &&
                                579         [ +  + ]:            184 :                  !record_fields_have_equality(typentry))
                                580                 :             74 :             eq_opr = InvalidOid;
                                581                 :                : 
                                582                 :                :         /* Force update of eq_opr_finfo only if we're changing state */
 3425                           583         [ +  + ]:          12457 :         if (typentry->eq_opr != eq_opr)
                                584                 :          11665 :             typentry->eq_opr_finfo.fn_oid = InvalidOid;
                                585                 :                : 
 4699                           586                 :          12457 :         typentry->eq_opr = eq_opr;
                                587                 :                : 
                                588                 :                :         /*
                                589                 :                :          * Reset info about hash functions whenever we pick up new info about
                                590                 :                :          * equality operator.  This is so we can ensure that the hash
                                591                 :                :          * functions match the operator.
                                592                 :                :          */
 2368                           593                 :          12457 :         typentry->flags &= ~(TCFLAGS_CHECKED_HASH_PROC |
                                594                 :                :                              TCFLAGS_CHECKED_HASH_EXTENDED_PROC);
 3425                           595                 :          12457 :         typentry->flags |= TCFLAGS_CHECKED_EQ_OPR;
                                596                 :                :     }
                                597         [ +  + ]:         309951 :     if ((flags & TYPECACHE_LT_OPR) &&
                                598         [ +  + ]:         113021 :         !(typentry->flags & TCFLAGS_CHECKED_LT_OPR))
                                599                 :                :     {
 4693 bruce@momjian.us          600                 :           7336 :         Oid         lt_opr = InvalidOid;
                                601                 :                : 
 6322 tgl@sss.pgh.pa.us         602         [ +  + ]:           7336 :         if (typentry->btree_opf != InvalidOid)
 4699                           603                 :           7181 :             lt_opr = get_opfamily_member(typentry->btree_opf,
                                604                 :                :                                          typentry->btree_opintype,
                                605                 :                :                                          typentry->btree_opintype,
                                606                 :                :                                          BTLessStrategyNumber);
                                607                 :                : 
                                608                 :                :         /*
                                609                 :                :          * As above, make sure array_cmp or record_cmp will succeed; but again
                                610                 :                :          * we need no special check for ranges or multiranges.
                                611                 :                :          */
                                612         [ +  + ]:           7336 :         if (lt_opr == ARRAY_LT_OP &&
                                613         [ +  + ]:            893 :             !array_element_has_compare(typentry))
                                614                 :            203 :             lt_opr = InvalidOid;
                                615         [ +  + ]:           7133 :         else if (lt_opr == RECORD_LT_OP &&
                                616         [ +  + ]:             57 :                  !record_fields_have_compare(typentry))
                                617                 :              6 :             lt_opr = InvalidOid;
                                618                 :                : 
                                619                 :           7336 :         typentry->lt_opr = lt_opr;
 3425                           620                 :           7336 :         typentry->flags |= TCFLAGS_CHECKED_LT_OPR;
                                621                 :                :     }
                                622         [ +  + ]:         309951 :     if ((flags & TYPECACHE_GT_OPR) &&
                                623         [ +  + ]:         110670 :         !(typentry->flags & TCFLAGS_CHECKED_GT_OPR))
                                624                 :                :     {
 4693 bruce@momjian.us          625                 :           7318 :         Oid         gt_opr = InvalidOid;
                                626                 :                : 
 6322 tgl@sss.pgh.pa.us         627         [ +  + ]:           7318 :         if (typentry->btree_opf != InvalidOid)
 4699                           628                 :           7163 :             gt_opr = get_opfamily_member(typentry->btree_opf,
                                629                 :                :                                          typentry->btree_opintype,
                                630                 :                :                                          typentry->btree_opintype,
                                631                 :                :                                          BTGreaterStrategyNumber);
                                632                 :                : 
                                633                 :                :         /*
                                634                 :                :          * As above, make sure array_cmp or record_cmp will succeed; but again
                                635                 :                :          * we need no special check for ranges or multiranges.
                                636                 :                :          */
                                637         [ +  + ]:           7318 :         if (gt_opr == ARRAY_GT_OP &&
                                638         [ +  + ]:            890 :             !array_element_has_compare(typentry))
                                639                 :            203 :             gt_opr = InvalidOid;
                                640         [ +  + ]:           7115 :         else if (gt_opr == RECORD_GT_OP &&
                                641         [ +  + ]:             57 :                  !record_fields_have_compare(typentry))
                                642                 :              6 :             gt_opr = InvalidOid;
                                643                 :                : 
                                644                 :           7318 :         typentry->gt_opr = gt_opr;
 3425                           645                 :           7318 :         typentry->flags |= TCFLAGS_CHECKED_GT_OPR;
                                646                 :                :     }
 7546                           647         [ +  + ]:         309951 :     if ((flags & (TYPECACHE_CMP_PROC | TYPECACHE_CMP_PROC_FINFO)) &&
 3425                           648         [ +  + ]:          10888 :         !(typentry->flags & TCFLAGS_CHECKED_CMP_PROC))
                                649                 :                :     {
 4693 bruce@momjian.us          650                 :           1679 :         Oid         cmp_proc = InvalidOid;
                                651                 :                : 
 6322 tgl@sss.pgh.pa.us         652         [ +  + ]:           1679 :         if (typentry->btree_opf != InvalidOid)
 4699                           653                 :           1603 :             cmp_proc = get_opfamily_proc(typentry->btree_opf,
                                654                 :                :                                          typentry->btree_opintype,
                                655                 :                :                                          typentry->btree_opintype,
                                656                 :                :                                          BTORDER_PROC);
                                657                 :                : 
                                658                 :                :         /*
                                659                 :                :          * As above, make sure array_cmp or record_cmp will succeed; but again
                                660                 :                :          * we need no special check for ranges or multiranges.
                                661                 :                :          */
                                662         [ +  + ]:           1679 :         if (cmp_proc == F_BTARRAYCMP &&
                                663         [ +  + ]:            320 :             !array_element_has_compare(typentry))
                                664                 :             65 :             cmp_proc = InvalidOid;
                                665         [ +  + ]:           1614 :         else if (cmp_proc == F_BTRECORDCMP &&
                                666         [ +  + ]:            102 :                  !record_fields_have_compare(typentry))
                                667                 :             65 :             cmp_proc = InvalidOid;
                                668                 :                : 
                                669                 :                :         /* Force update of cmp_proc_finfo only if we're changing state */
 3425                           670         [ +  + ]:           1679 :         if (typentry->cmp_proc != cmp_proc)
                                671                 :           1461 :             typentry->cmp_proc_finfo.fn_oid = InvalidOid;
                                672                 :                : 
 4699                           673                 :           1679 :         typentry->cmp_proc = cmp_proc;
 3425                           674                 :           1679 :         typentry->flags |= TCFLAGS_CHECKED_CMP_PROC;
                                675                 :                :     }
 4915                           676         [ +  + ]:         309951 :     if ((flags & (TYPECACHE_HASH_PROC | TYPECACHE_HASH_PROC_FINFO)) &&
 3425                           677         [ +  + ]:         127092 :         !(typentry->flags & TCFLAGS_CHECKED_HASH_PROC))
                                678                 :                :     {
 4693 bruce@momjian.us          679                 :           9115 :         Oid         hash_proc = InvalidOid;
                                680                 :                : 
                                681                 :                :         /*
                                682                 :                :          * We insist that the eq_opr, if one has been determined, match the
                                683                 :                :          * hash opclass; else report there is no hash function.
                                684                 :                :          */
 4915 tgl@sss.pgh.pa.us         685         [ +  + ]:           9115 :         if (typentry->hash_opf != InvalidOid &&
                                686   [ +  +  +  - ]:          17890 :             (!OidIsValid(typentry->eq_opr) ||
                                687                 :           8860 :              typentry->eq_opr == get_opfamily_member(typentry->hash_opf,
                                688                 :                :                                                      typentry->hash_opintype,
                                689                 :                :                                                      typentry->hash_opintype,
                                690                 :                :                                                      HTEqualStrategyNumber)))
 4699                           691                 :           9030 :             hash_proc = get_opfamily_proc(typentry->hash_opf,
                                692                 :                :                                           typentry->hash_opintype,
                                693                 :                :                                           typentry->hash_opintype,
                                694                 :                :                                           HASHSTANDARD_PROC);
                                695                 :                : 
                                696                 :                :         /*
                                697                 :                :          * As above, make sure hash_array, hash_record, or hash_range will
                                698                 :                :          * succeed.
                                699                 :                :          */
                                700         [ +  + ]:           9115 :         if (hash_proc == F_HASH_ARRAY &&
                                701         [ +  + ]:            634 :             !array_element_has_hashing(typentry))
                                702                 :             71 :             hash_proc = InvalidOid;
 1242 peter@eisentraut.org      703         [ +  + ]:           9044 :         else if (hash_proc == F_HASH_RECORD &&
                                704         [ +  + ]:            179 :                  !record_fields_have_hashing(typentry))
                                705                 :             87 :             hash_proc = InvalidOid;
                                706         [ +  + ]:           8957 :         else if (hash_proc == F_HASH_RANGE &&
 1068 tgl@sss.pgh.pa.us         707         [ +  + ]:             16 :                  !range_element_has_hashing(typentry))
 2368                           708                 :              3 :             hash_proc = InvalidOid;
                                709                 :                : 
                                710                 :                :         /*
                                711                 :                :          * Likewise for hash_multirange.
                                712                 :                :          */
 1211 akorotkov@postgresql      713         [ +  + ]:           9115 :         if (hash_proc == F_HASH_MULTIRANGE &&
                                714         [ +  + ]:              9 :             !multirange_element_has_hashing(typentry))
                                715                 :              3 :             hash_proc = InvalidOid;
                                716                 :                : 
                                717                 :                :         /* Force update of hash_proc_finfo only if we're changing state */
 3425 tgl@sss.pgh.pa.us         718         [ +  + ]:           9115 :         if (typentry->hash_proc != hash_proc)
                                719                 :           8419 :             typentry->hash_proc_finfo.fn_oid = InvalidOid;
                                720                 :                : 
 4699                           721                 :           9115 :         typentry->hash_proc = hash_proc;
 3425                           722                 :           9115 :         typentry->flags |= TCFLAGS_CHECKED_HASH_PROC;
                                723                 :                :     }
 2418 rhaas@postgresql.org      724         [ +  + ]:         309951 :     if ((flags & (TYPECACHE_HASH_EXTENDED_PROC |
                                725                 :           3206 :                   TYPECACHE_HASH_EXTENDED_PROC_FINFO)) &&
                                726         [ +  + ]:           3206 :         !(typentry->flags & TCFLAGS_CHECKED_HASH_EXTENDED_PROC))
                                727                 :                :     {
                                728                 :           1379 :         Oid         hash_extended_proc = InvalidOid;
                                729                 :                : 
                                730                 :                :         /*
                                731                 :                :          * We insist that the eq_opr, if one has been determined, match the
                                732                 :                :          * hash opclass; else report there is no hash function.
                                733                 :                :          */
                                734         [ +  + ]:           1379 :         if (typentry->hash_opf != InvalidOid &&
                                735   [ +  +  +  - ]:           2573 :             (!OidIsValid(typentry->eq_opr) ||
                                736                 :           1212 :              typentry->eq_opr == get_opfamily_member(typentry->hash_opf,
                                737                 :                :                                                      typentry->hash_opintype,
                                738                 :                :                                                      typentry->hash_opintype,
                                739                 :                :                                                      HTEqualStrategyNumber)))
                                740                 :           1361 :             hash_extended_proc = get_opfamily_proc(typentry->hash_opf,
                                741                 :                :                                                    typentry->hash_opintype,
                                742                 :                :                                                    typentry->hash_opintype,
                                743                 :                :                                                    HASHEXTENDED_PROC);
                                744                 :                : 
                                745                 :                :         /*
                                746                 :                :          * As above, make sure hash_array_extended, hash_record_extended, or
                                747                 :                :          * hash_range_extended will succeed.
                                748                 :                :          */
                                749         [ +  + ]:           1379 :         if (hash_extended_proc == F_HASH_ARRAY_EXTENDED &&
 2368 tgl@sss.pgh.pa.us         750         [ +  + ]:            136 :             !array_element_has_extended_hashing(typentry))
 2418 rhaas@postgresql.org      751                 :             65 :             hash_extended_proc = InvalidOid;
 1242 peter@eisentraut.org      752         [ +  + ]:           1314 :         else if (hash_extended_proc == F_HASH_RECORD_EXTENDED &&
 1068 tgl@sss.pgh.pa.us         753         [ +  + ]:             72 :                  !record_fields_have_extended_hashing(typentry))
 1242 peter@eisentraut.org      754                 :             68 :             hash_extended_proc = InvalidOid;
                                755         [ -  + ]:           1246 :         else if (hash_extended_proc == F_HASH_RANGE_EXTENDED &&
 1068 tgl@sss.pgh.pa.us         756         [ #  # ]:UBC           0 :                  !range_element_has_extended_hashing(typentry))
 2368                           757                 :              0 :             hash_extended_proc = InvalidOid;
                                758                 :                : 
                                759                 :                :         /*
                                760                 :                :          * Likewise for hash_multirange_extended.
                                761                 :                :          */
 1211 akorotkov@postgresql      762         [ -  + ]:CBC        1379 :         if (hash_extended_proc == F_HASH_MULTIRANGE_EXTENDED &&
 1211 akorotkov@postgresql      763         [ #  # ]:UBC           0 :             !multirange_element_has_extended_hashing(typentry))
                                764                 :              0 :             hash_extended_proc = InvalidOid;
                                765                 :                : 
                                766                 :                :         /* Force update of proc finfo only if we're changing state */
 2418 rhaas@postgresql.org      767         [ +  + ]:CBC        1379 :         if (typentry->hash_extended_proc != hash_extended_proc)
                                768                 :           1226 :             typentry->hash_extended_proc_finfo.fn_oid = InvalidOid;
                                769                 :                : 
                                770                 :           1379 :         typentry->hash_extended_proc = hash_extended_proc;
                                771                 :           1379 :         typentry->flags |= TCFLAGS_CHECKED_HASH_EXTENDED_PROC;
                                772                 :                :     }
                                773                 :                : 
                                774                 :                :     /*
                                775                 :                :      * Set up fmgr lookup info as requested
                                776                 :                :      *
                                777                 :                :      * Note: we tell fmgr the finfo structures live in CacheMemoryContext,
                                778                 :                :      * which is not quite right (they're really in the hash table's private
                                779                 :                :      * memory context) but this will do for our purposes.
                                780                 :                :      *
                                781                 :                :      * Note: the code above avoids invalidating the finfo structs unless the
                                782                 :                :      * referenced operator/function OID actually changes.  This is to prevent
                                783                 :                :      * unnecessary leakage of any subsidiary data attached to an finfo, since
                                784                 :                :      * that would cause session-lifespan memory leaks.
                                785                 :                :      */
 7546 tgl@sss.pgh.pa.us         786         [ +  + ]:         309951 :     if ((flags & TYPECACHE_EQ_OPR_FINFO) &&
                                787         [ +  + ]:           2403 :         typentry->eq_opr_finfo.fn_oid == InvalidOid &&
                                788         [ +  + ]:            682 :         typentry->eq_opr != InvalidOid)
                                789                 :                :     {
                                790                 :                :         Oid         eq_opr_func;
                                791                 :                : 
                                792                 :            679 :         eq_opr_func = get_opcode(typentry->eq_opr);
                                793         [ +  - ]:            679 :         if (eq_opr_func != InvalidOid)
                                794                 :            679 :             fmgr_info_cxt(eq_opr_func, &typentry->eq_opr_finfo,
                                795                 :                :                           CacheMemoryContext);
                                796                 :                :     }
                                797         [ +  + ]:         309951 :     if ((flags & TYPECACHE_CMP_PROC_FINFO) &&
                                798         [ +  + ]:           6275 :         typentry->cmp_proc_finfo.fn_oid == InvalidOid &&
                                799         [ +  + ]:           1546 :         typentry->cmp_proc != InvalidOid)
                                800                 :                :     {
                                801                 :            585 :         fmgr_info_cxt(typentry->cmp_proc, &typentry->cmp_proc_finfo,
                                802                 :                :                       CacheMemoryContext);
                                803                 :                :     }
 4915                           804         [ +  + ]:         309951 :     if ((flags & TYPECACHE_HASH_PROC_FINFO) &&
                                805         [ +  + ]:           3093 :         typentry->hash_proc_finfo.fn_oid == InvalidOid &&
                                806         [ +  + ]:            634 :         typentry->hash_proc != InvalidOid)
                                807                 :                :     {
                                808                 :            554 :         fmgr_info_cxt(typentry->hash_proc, &typentry->hash_proc_finfo,
                                809                 :                :                       CacheMemoryContext);
                                810                 :                :     }
 2418 rhaas@postgresql.org      811         [ +  + ]:         309951 :     if ((flags & TYPECACHE_HASH_EXTENDED_PROC_FINFO) &&
                                812         [ +  + ]:             57 :         typentry->hash_extended_proc_finfo.fn_oid == InvalidOid &&
                                813         [ +  + ]:             18 :         typentry->hash_extended_proc != InvalidOid)
                                814                 :                :     {
                                815                 :             12 :         fmgr_info_cxt(typentry->hash_extended_proc,
                                816                 :                :                       &typentry->hash_extended_proc_finfo,
                                817                 :                :                       CacheMemoryContext);
                                818                 :                :     }
                                819                 :                : 
                                820                 :                :     /*
                                821                 :                :      * If it's a composite type (row type), get tupdesc if requested
                                822                 :                :      */
 7318 tgl@sss.pgh.pa.us         823         [ +  + ]:         309951 :     if ((flags & TYPECACHE_TUPDESC) &&
                                824         [ +  + ]:          39766 :         typentry->tupDesc == NULL &&
 6222                           825         [ +  + ]:           1746 :         typentry->typtype == TYPTYPE_COMPOSITE)
                                826                 :                :     {
 4699                           827                 :           1683 :         load_typcache_tupdesc(typentry);
                                828                 :                :     }
                                829                 :                : 
                                830                 :                :     /*
                                831                 :                :      * If requested, get information about a range type
                                832                 :                :      *
                                833                 :                :      * This includes making sure that the basic info about the range element
                                834                 :                :      * type is up-to-date.
                                835                 :                :      */
 4534                           836         [ +  + ]:         309951 :     if ((flags & TYPECACHE_RANGE_INFO) &&
                                837         [ +  - ]:          10702 :         typentry->typtype == TYPTYPE_RANGE)
                                838                 :                :     {
 1500                           839         [ +  + ]:          10702 :         if (typentry->rngelemtype == NULL)
                                840                 :            239 :             load_rangetype_info(typentry);
                                841         [ -  + ]:          10463 :         else if (!(typentry->rngelemtype->flags & TCFLAGS_HAVE_PG_TYPE_DATA))
 1500 tgl@sss.pgh.pa.us         842                 :LBC         (2) :             (void) lookup_type_cache(typentry->rngelemtype->type_id, 0);
                                843                 :                :     }
                                844                 :                : 
                                845                 :                :     /*
                                846                 :                :      * If requested, get information about a multirange type
                                847                 :                :      */
 1211 akorotkov@postgresql      848         [ +  + ]:CBC      309951 :     if ((flags & TYPECACHE_MULTIRANGE_INFO) &&
                                849         [ +  + ]:           4976 :         typentry->rngtype == NULL &&
                                850         [ +  - ]:            100 :         typentry->typtype == TYPTYPE_MULTIRANGE)
                                851                 :                :     {
                                852                 :            100 :         load_multirangetype_info(typentry);
                                853                 :                :     }
                                854                 :                : 
                                855                 :                :     /*
                                856                 :                :      * If requested, get information about a domain type
                                857                 :                :      */
 2362 tgl@sss.pgh.pa.us         858         [ +  + ]:         309951 :     if ((flags & TYPECACHE_DOMAIN_BASE_INFO) &&
                                859         [ +  + ]:           3814 :         typentry->domainBaseType == InvalidOid &&
                                860         [ +  + ]:           2444 :         typentry->typtype == TYPTYPE_DOMAIN)
                                861                 :                :     {
                                862                 :            200 :         typentry->domainBaseTypmod = -1;
                                863                 :            200 :         typentry->domainBaseType =
                                864                 :            200 :             getBaseTypeAndTypmod(type_id, &typentry->domainBaseTypmod);
                                865                 :                :     }
                                866         [ +  + ]:         309951 :     if ((flags & TYPECACHE_DOMAIN_CONSTR_INFO) &&
 3332                           867         [ +  + ]:          18673 :         (typentry->flags & TCFLAGS_CHECKED_DOMAIN_CONSTRAINTS) == 0 &&
                                868         [ +  + ]:           2914 :         typentry->typtype == TYPTYPE_DOMAIN)
                                869                 :                :     {
                                870                 :           1187 :         load_domaintype_info(typentry);
                                871                 :                :     }
                                872                 :                : 
 4699                           873                 :         309951 :     return typentry;
                                874                 :                : }
                                875                 :                : 
                                876                 :                : /*
                                877                 :                :  * load_typcache_tupdesc --- helper routine to set up composite type's tupDesc
                                878                 :                :  */
                                879                 :                : static void
                                880                 :           1790 : load_typcache_tupdesc(TypeCacheEntry *typentry)
                                881                 :                : {
                                882                 :                :     Relation    rel;
                                883                 :                : 
 2489                           884         [ -  + ]:           1790 :     if (!OidIsValid(typentry->typrelid)) /* should not happen */
 4699 tgl@sss.pgh.pa.us         885         [ #  # ]:UBC           0 :         elog(ERROR, "invalid typrelid for composite type %u",
                                886                 :                :              typentry->type_id);
 4699 tgl@sss.pgh.pa.us         887                 :CBC        1790 :     rel = relation_open(typentry->typrelid, AccessShareLock);
                                888         [ -  + ]:           1790 :     Assert(rel->rd_rel->reltype == typentry->type_id);
                                889                 :                : 
                                890                 :                :     /*
                                891                 :                :      * Link to the tupdesc and increment its refcount (we assert it's a
                                892                 :                :      * refcounted descriptor).  We don't use IncrTupleDescRefCount() for this,
                                893                 :                :      * because the reference mustn't be entered in the current resource owner;
                                894                 :                :      * it can outlive the current query.
                                895                 :                :      */
                                896                 :           1790 :     typentry->tupDesc = RelationGetDescr(rel);
                                897                 :                : 
                                898         [ -  + ]:           1790 :     Assert(typentry->tupDesc->tdrefcount > 0);
                                899                 :           1790 :     typentry->tupDesc->tdrefcount++;
                                900                 :                : 
                                901                 :                :     /*
                                902                 :                :      * In future, we could take some pains to not change tupDesc_identifier if
                                903                 :                :      * the tupdesc didn't really change; but for now it's not worth it.
                                904                 :                :      */
 2252                           905                 :           1790 :     typentry->tupDesc_identifier = ++tupledesc_id_counter;
                                906                 :                : 
 4699                           907                 :           1790 :     relation_close(rel, AccessShareLock);
                                908                 :           1790 : }
                                909                 :                : 
                                910                 :                : /*
                                911                 :                :  * load_rangetype_info --- helper routine to set up range type information
                                912                 :                :  */
                                913                 :                : static void
 4534                           914                 :            239 : load_rangetype_info(TypeCacheEntry *typentry)
                                915                 :                : {
                                916                 :                :     Form_pg_range pg_range;
                                917                 :                :     HeapTuple   tup;
                                918                 :                :     Oid         subtypeOid;
                                919                 :                :     Oid         opclassOid;
                                920                 :                :     Oid         canonicalOid;
                                921                 :                :     Oid         subdiffOid;
                                922                 :                :     Oid         opfamilyOid;
                                923                 :                :     Oid         opcintype;
                                924                 :                :     Oid         cmpFnOid;
                                925                 :                : 
                                926                 :                :     /* get information from pg_range */
                                927                 :            239 :     tup = SearchSysCache1(RANGETYPE, ObjectIdGetDatum(typentry->type_id));
                                928                 :                :     /* should not fail, since we already checked typtype ... */
                                929         [ -  + ]:            239 :     if (!HeapTupleIsValid(tup))
 4534 tgl@sss.pgh.pa.us         930         [ #  # ]:UBC           0 :         elog(ERROR, "cache lookup failed for range type %u",
                                931                 :                :              typentry->type_id);
 4534 tgl@sss.pgh.pa.us         932                 :CBC         239 :     pg_range = (Form_pg_range) GETSTRUCT(tup);
                                933                 :                : 
                                934                 :            239 :     subtypeOid = pg_range->rngsubtype;
                                935                 :            239 :     typentry->rng_collation = pg_range->rngcollation;
                                936                 :            239 :     opclassOid = pg_range->rngsubopc;
                                937                 :            239 :     canonicalOid = pg_range->rngcanonical;
                                938                 :            239 :     subdiffOid = pg_range->rngsubdiff;
                                939                 :                : 
                                940                 :            239 :     ReleaseSysCache(tup);
                                941                 :                : 
                                942                 :                :     /* get opclass properties and look up the comparison function */
                                943                 :            239 :     opfamilyOid = get_opclass_family(opclassOid);
                                944                 :            239 :     opcintype = get_opclass_input_type(opclassOid);
   85 tgl@sss.pgh.pa.us         945                 :GNC         239 :     typentry->rng_opfamily = opfamilyOid;
                                946                 :                : 
 4534 tgl@sss.pgh.pa.us         947                 :CBC         239 :     cmpFnOid = get_opfamily_proc(opfamilyOid, opcintype, opcintype,
                                948                 :                :                                  BTORDER_PROC);
                                949         [ -  + ]:            239 :     if (!RegProcedureIsValid(cmpFnOid))
 4534 tgl@sss.pgh.pa.us         950         [ #  # ]:UBC           0 :         elog(ERROR, "missing support function %d(%u,%u) in opfamily %u",
                                951                 :                :              BTORDER_PROC, opcintype, opcintype, opfamilyOid);
                                952                 :                : 
                                953                 :                :     /* set up cached fmgrinfo structs */
 4534 tgl@sss.pgh.pa.us         954                 :CBC         239 :     fmgr_info_cxt(cmpFnOid, &typentry->rng_cmp_proc_finfo,
                                955                 :                :                   CacheMemoryContext);
                                956         [ +  + ]:            239 :     if (OidIsValid(canonicalOid))
                                957                 :            110 :         fmgr_info_cxt(canonicalOid, &typentry->rng_canonical_finfo,
                                958                 :                :                       CacheMemoryContext);
                                959         [ +  + ]:            239 :     if (OidIsValid(subdiffOid))
                                960                 :            172 :         fmgr_info_cxt(subdiffOid, &typentry->rng_subdiff_finfo,
                                961                 :                :                       CacheMemoryContext);
                                962                 :                : 
                                963                 :                :     /* Lastly, set up link to the element type --- this marks data valid */
                                964                 :            239 :     typentry->rngelemtype = lookup_type_cache(subtypeOid, 0);
                                965                 :            239 : }
                                966                 :                : 
                                967                 :                : /*
                                968                 :                :  * load_multirangetype_info --- helper routine to set up multirange type
                                969                 :                :  * information
                                970                 :                :  */
                                971                 :                : static void
 1211 akorotkov@postgresql      972                 :            100 : load_multirangetype_info(TypeCacheEntry *typentry)
                                973                 :                : {
                                974                 :                :     Oid         rangetypeOid;
                                975                 :                : 
                                976                 :            100 :     rangetypeOid = get_multirange_range(typentry->type_id);
                                977         [ -  + ]:            100 :     if (!OidIsValid(rangetypeOid))
 1211 akorotkov@postgresql      978         [ #  # ]:UBC           0 :         elog(ERROR, "cache lookup failed for multirange type %u",
                                979                 :                :              typentry->type_id);
                                980                 :                : 
 1211 akorotkov@postgresql      981                 :CBC         100 :     typentry->rngtype = lookup_type_cache(rangetypeOid, TYPECACHE_RANGE_INFO);
                                982                 :            100 : }
                                983                 :                : 
                                984                 :                : /*
                                985                 :                :  * load_domaintype_info --- helper routine to set up domain constraint info
                                986                 :                :  *
                                987                 :                :  * Note: we assume we're called in a relatively short-lived context, so it's
                                988                 :                :  * okay to leak data into the current context while scanning pg_constraint.
                                989                 :                :  * We build the new DomainConstraintCache data in a context underneath
                                990                 :                :  * CurrentMemoryContext, and reparent it under CacheMemoryContext when
                                991                 :                :  * complete.
                                992                 :                :  */
                                993                 :                : static void
 3332 tgl@sss.pgh.pa.us         994                 :           1187 : load_domaintype_info(TypeCacheEntry *typentry)
                                995                 :                : {
                                996                 :           1187 :     Oid         typeOid = typentry->type_id;
                                997                 :                :     DomainConstraintCache *dcc;
                                998                 :           1187 :     bool        notNull = false;
                                999                 :                :     DomainConstraintState **ccons;
                               1000                 :                :     int         cconslen;
                               1001                 :                :     Relation    conRel;
                               1002                 :                :     MemoryContext oldcxt;
                               1003                 :                : 
                               1004                 :                :     /*
                               1005                 :                :      * If we're here, any existing constraint info is stale, so release it.
                               1006                 :                :      * For safety, be sure to null the link before trying to delete the data.
                               1007                 :                :      */
                               1008         [ +  + ]:           1187 :     if (typentry->domainData)
                               1009                 :                :     {
                               1010                 :            289 :         dcc = typentry->domainData;
                               1011                 :            289 :         typentry->domainData = NULL;
                               1012                 :            289 :         decr_dcc_refcount(dcc);
                               1013                 :                :     }
                               1014                 :                : 
                               1015                 :                :     /*
                               1016                 :                :      * We try to optimize the common case of no domain constraints, so don't
                               1017                 :                :      * create the dcc object and context until we find a constraint.  Likewise
                               1018                 :                :      * for the temp sorting array.
                               1019                 :                :      */
                               1020                 :           1187 :     dcc = NULL;
 3310                          1021                 :           1187 :     ccons = NULL;
                               1022                 :           1187 :     cconslen = 0;
                               1023                 :                : 
                               1024                 :                :     /*
                               1025                 :                :      * Scan pg_constraint for relevant constraints.  We want to find
                               1026                 :                :      * constraints for not just this domain, but any ancestor domains, so the
                               1027                 :                :      * outer loop crawls up the domain stack.
                               1028                 :                :      */
 1910 andres@anarazel.de       1029                 :           1187 :     conRel = table_open(ConstraintRelationId, AccessShareLock);
                               1030                 :                : 
                               1031                 :                :     for (;;)
 3332 tgl@sss.pgh.pa.us        1032                 :           1206 :     {
                               1033                 :                :         HeapTuple   tup;
                               1034                 :                :         HeapTuple   conTup;
                               1035                 :                :         Form_pg_type typTup;
 3310                          1036                 :           2393 :         int         nccons = 0;
                               1037                 :                :         ScanKeyData key[1];
                               1038                 :                :         SysScanDesc scan;
                               1039                 :                : 
 3332                          1040                 :           2393 :         tup = SearchSysCache1(TYPEOID, ObjectIdGetDatum(typeOid));
                               1041         [ -  + ]:           2393 :         if (!HeapTupleIsValid(tup))
 3332 tgl@sss.pgh.pa.us        1042         [ #  # ]:UBC           0 :             elog(ERROR, "cache lookup failed for type %u", typeOid);
 3332 tgl@sss.pgh.pa.us        1043                 :CBC        2393 :         typTup = (Form_pg_type) GETSTRUCT(tup);
                               1044                 :                : 
                               1045         [ +  + ]:           2393 :         if (typTup->typtype != TYPTYPE_DOMAIN)
                               1046                 :                :         {
                               1047                 :                :             /* Not a domain, so done */
                               1048                 :           1187 :             ReleaseSysCache(tup);
                               1049                 :           1187 :             break;
                               1050                 :                :         }
                               1051                 :                : 
                               1052                 :                :         /* Test for NOT NULL Constraint */
                               1053         [ +  + ]:           1206 :         if (typTup->typnotnull)
                               1054                 :             62 :             notNull = true;
                               1055                 :                : 
                               1056                 :                :         /* Look for CHECK Constraints on this domain */
                               1057                 :           1206 :         ScanKeyInit(&key[0],
                               1058                 :                :                     Anum_pg_constraint_contypid,
                               1059                 :                :                     BTEqualStrategyNumber, F_OIDEQ,
                               1060                 :                :                     ObjectIdGetDatum(typeOid));
                               1061                 :                : 
                               1062                 :           1206 :         scan = systable_beginscan(conRel, ConstraintTypidIndexId, true,
                               1063                 :                :                                   NULL, 1, key);
                               1064                 :                : 
                               1065         [ +  + ]:           1799 :         while (HeapTupleIsValid(conTup = systable_getnext(scan)))
                               1066                 :                :         {
                               1067                 :            593 :             Form_pg_constraint c = (Form_pg_constraint) GETSTRUCT(conTup);
                               1068                 :                :             Datum       val;
                               1069                 :                :             bool        isNull;
                               1070                 :                :             char       *constring;
                               1071                 :                :             Expr       *check_expr;
                               1072                 :                :             DomainConstraintState *r;
                               1073                 :                : 
                               1074                 :                :             /* Ignore non-CHECK constraints */
                               1075         [ +  + ]:            593 :             if (c->contype != CONSTRAINT_CHECK)
 3332 tgl@sss.pgh.pa.us        1076                 :GBC          62 :                 continue;
                               1077                 :                : 
                               1078                 :                :             /* Not expecting conbin to be NULL, but we'll test for it anyway */
 3332 tgl@sss.pgh.pa.us        1079                 :CBC         531 :             val = fastgetattr(conTup, Anum_pg_constraint_conbin,
                               1080                 :                :                               conRel->rd_att, &isNull);
                               1081         [ -  + ]:            531 :             if (isNull)
 3332 tgl@sss.pgh.pa.us        1082         [ #  # ]:UBC           0 :                 elog(ERROR, "domain \"%s\" constraint \"%s\" has NULL conbin",
                               1083                 :                :                      NameStr(typTup->typname), NameStr(c->conname));
                               1084                 :                : 
                               1085                 :                :             /* Convert conbin to C string in caller context */
 3332 tgl@sss.pgh.pa.us        1086                 :CBC         531 :             constring = TextDatumGetCString(val);
                               1087                 :                : 
                               1088                 :                :             /* Create the DomainConstraintCache object and context if needed */
                               1089         [ +  + ]:            531 :             if (dcc == NULL)
                               1090                 :                :             {
                               1091                 :                :                 MemoryContext cxt;
                               1092                 :                : 
                               1093                 :            516 :                 cxt = AllocSetContextCreate(CurrentMemoryContext,
                               1094                 :                :                                             "Domain constraints",
                               1095                 :                :                                             ALLOCSET_SMALL_SIZES);
                               1096                 :                :                 dcc = (DomainConstraintCache *)
                               1097                 :            516 :                     MemoryContextAlloc(cxt, sizeof(DomainConstraintCache));
                               1098                 :            516 :                 dcc->constraints = NIL;
                               1099                 :            516 :                 dcc->dccContext = cxt;
                               1100                 :            516 :                 dcc->dccRefCount = 0;
                               1101                 :                :             }
                               1102                 :                : 
                               1103                 :                :             /* Create node trees in DomainConstraintCache's context */
                               1104                 :            531 :             oldcxt = MemoryContextSwitchTo(dcc->dccContext);
                               1105                 :                : 
                               1106                 :            531 :             check_expr = (Expr *) stringToNode(constring);
                               1107                 :                : 
                               1108                 :                :             /*
                               1109                 :                :              * Plan the expression, since ExecInitExpr will expect that.
                               1110                 :                :              *
                               1111                 :                :              * Note: caching the result of expression_planner() is not very
                               1112                 :                :              * good practice.  Ideally we'd use a CachedExpression here so
                               1113                 :                :              * that we would react promptly to, eg, changes in inlined
                               1114                 :                :              * functions.  However, because we don't support mutable domain
                               1115                 :                :              * CHECK constraints, it's not really clear that it's worth the
                               1116                 :                :              * extra overhead to do that.
                               1117                 :                :              */
                               1118                 :            531 :             check_expr = expression_planner(check_expr);
                               1119                 :                : 
                               1120                 :            531 :             r = makeNode(DomainConstraintState);
                               1121                 :            531 :             r->constrainttype = DOM_CONSTRAINT_CHECK;
                               1122                 :            531 :             r->name = pstrdup(NameStr(c->conname));
 2588 andres@anarazel.de       1123                 :            531 :             r->check_expr = check_expr;
                               1124                 :            531 :             r->check_exprstate = NULL;
                               1125                 :                : 
 3310 tgl@sss.pgh.pa.us        1126                 :            531 :             MemoryContextSwitchTo(oldcxt);
                               1127                 :                : 
                               1128                 :                :             /* Accumulate constraints in an array, for sorting below */
                               1129         [ +  + ]:            531 :             if (ccons == NULL)
                               1130                 :                :             {
                               1131                 :            516 :                 cconslen = 8;
                               1132                 :                :                 ccons = (DomainConstraintState **)
                               1133                 :            516 :                     palloc(cconslen * sizeof(DomainConstraintState *));
                               1134                 :                :             }
                               1135         [ -  + ]:             15 :             else if (nccons >= cconslen)
                               1136                 :                :             {
 3310 tgl@sss.pgh.pa.us        1137                 :UBC           0 :                 cconslen *= 2;
                               1138                 :                :                 ccons = (DomainConstraintState **)
                               1139                 :              0 :                     repalloc(ccons, cconslen * sizeof(DomainConstraintState *));
                               1140                 :                :             }
 3310 tgl@sss.pgh.pa.us        1141                 :CBC         531 :             ccons[nccons++] = r;
                               1142                 :                :         }
                               1143                 :                : 
                               1144                 :           1206 :         systable_endscan(scan);
                               1145                 :                : 
                               1146         [ +  + ]:           1206 :         if (nccons > 0)
                               1147                 :                :         {
                               1148                 :                :             /*
                               1149                 :                :              * Sort the items for this domain, so that CHECKs are applied in a
                               1150                 :                :              * deterministic order.
                               1151                 :                :              */
                               1152         [ +  + ]:            526 :             if (nccons > 1)
                               1153                 :              4 :                 qsort(ccons, nccons, sizeof(DomainConstraintState *), dcs_cmp);
                               1154                 :                : 
                               1155                 :                :             /*
                               1156                 :                :              * Now attach them to the overall list.  Use lcons() here because
                               1157                 :                :              * constraints of parent domains should be applied earlier.
                               1158                 :                :              */
                               1159                 :            526 :             oldcxt = MemoryContextSwitchTo(dcc->dccContext);
                               1160         [ +  + ]:           1057 :             while (nccons > 0)
                               1161                 :            531 :                 dcc->constraints = lcons(ccons[--nccons], dcc->constraints);
 3332                          1162                 :            526 :             MemoryContextSwitchTo(oldcxt);
                               1163                 :                :         }
                               1164                 :                : 
                               1165                 :                :         /* loop to next domain in stack */
                               1166                 :           1206 :         typeOid = typTup->typbasetype;
                               1167                 :           1206 :         ReleaseSysCache(tup);
                               1168                 :                :     }
                               1169                 :                : 
 1910 andres@anarazel.de       1170                 :           1187 :     table_close(conRel, AccessShareLock);
                               1171                 :                : 
                               1172                 :                :     /*
                               1173                 :                :      * Only need to add one NOT NULL check regardless of how many domains in
                               1174                 :                :      * the stack request it.
                               1175                 :                :      */
 3332 tgl@sss.pgh.pa.us        1176         [ +  + ]:           1187 :     if (notNull)
                               1177                 :                :     {
                               1178                 :                :         DomainConstraintState *r;
                               1179                 :                : 
                               1180                 :                :         /* Create the DomainConstraintCache object and context if needed */
                               1181         [ +  + ]:             62 :         if (dcc == NULL)
                               1182                 :                :         {
                               1183                 :                :             MemoryContext cxt;
                               1184                 :                : 
                               1185                 :             49 :             cxt = AllocSetContextCreate(CurrentMemoryContext,
                               1186                 :                :                                         "Domain constraints",
                               1187                 :                :                                         ALLOCSET_SMALL_SIZES);
                               1188                 :                :             dcc = (DomainConstraintCache *)
                               1189                 :             49 :                 MemoryContextAlloc(cxt, sizeof(DomainConstraintCache));
                               1190                 :             49 :             dcc->constraints = NIL;
                               1191                 :             49 :             dcc->dccContext = cxt;
                               1192                 :             49 :             dcc->dccRefCount = 0;
                               1193                 :                :         }
                               1194                 :                : 
                               1195                 :                :         /* Create node trees in DomainConstraintCache's context */
                               1196                 :             62 :         oldcxt = MemoryContextSwitchTo(dcc->dccContext);
                               1197                 :                : 
                               1198                 :             62 :         r = makeNode(DomainConstraintState);
                               1199                 :                : 
                               1200                 :             62 :         r->constrainttype = DOM_CONSTRAINT_NOTNULL;
                               1201                 :             62 :         r->name = pstrdup("NOT NULL");
                               1202                 :             62 :         r->check_expr = NULL;
 2588 andres@anarazel.de       1203                 :             62 :         r->check_exprstate = NULL;
                               1204                 :                : 
                               1205                 :                :         /* lcons to apply the nullness check FIRST */
 3332 tgl@sss.pgh.pa.us        1206                 :             62 :         dcc->constraints = lcons(r, dcc->constraints);
                               1207                 :                : 
                               1208                 :             62 :         MemoryContextSwitchTo(oldcxt);
                               1209                 :                :     }
                               1210                 :                : 
                               1211                 :                :     /*
                               1212                 :                :      * If we made a constraint object, move it into CacheMemoryContext and
                               1213                 :                :      * attach it to the typcache entry.
                               1214                 :                :      */
                               1215         [ +  + ]:           1187 :     if (dcc)
                               1216                 :                :     {
                               1217                 :            565 :         MemoryContextSetParent(dcc->dccContext, CacheMemoryContext);
                               1218                 :            565 :         typentry->domainData = dcc;
                               1219                 :            565 :         dcc->dccRefCount++;      /* count the typcache's reference */
                               1220                 :                :     }
                               1221                 :                : 
                               1222                 :                :     /* Either way, the typcache entry's domain data is now valid. */
                               1223                 :           1187 :     typentry->flags |= TCFLAGS_CHECKED_DOMAIN_CONSTRAINTS;
                               1224                 :           1187 : }
                               1225                 :                : 
                               1226                 :                : /*
                               1227                 :                :  * qsort comparator to sort DomainConstraintState pointers by name
                               1228                 :                :  */
                               1229                 :                : static int
 3310                          1230                 :              5 : dcs_cmp(const void *a, const void *b)
                               1231                 :                : {
 2489                          1232                 :              5 :     const DomainConstraintState *const *ca = (const DomainConstraintState *const *) a;
                               1233                 :              5 :     const DomainConstraintState *const *cb = (const DomainConstraintState *const *) b;
                               1234                 :                : 
 3310                          1235                 :              5 :     return strcmp((*ca)->name, (*cb)->name);
                               1236                 :                : }
                               1237                 :                : 
                               1238                 :                : /*
                               1239                 :                :  * decr_dcc_refcount --- decrement a DomainConstraintCache's refcount,
                               1240                 :                :  * and free it if no references remain
                               1241                 :                :  */
                               1242                 :                : static void
 3332                          1243                 :           5490 : decr_dcc_refcount(DomainConstraintCache *dcc)
                               1244                 :                : {
                               1245         [ -  + ]:           5490 :     Assert(dcc->dccRefCount > 0);
                               1246         [ +  + ]:           5490 :     if (--(dcc->dccRefCount) <= 0)
                               1247                 :            287 :         MemoryContextDelete(dcc->dccContext);
                               1248                 :           5490 : }
                               1249                 :                : 
                               1250                 :                : /*
                               1251                 :                :  * Context reset/delete callback for a DomainConstraintRef
                               1252                 :                :  */
                               1253                 :                : static void
                               1254                 :           5500 : dccref_deletion_callback(void *arg)
                               1255                 :                : {
                               1256                 :           5500 :     DomainConstraintRef *ref = (DomainConstraintRef *) arg;
                               1257                 :           5500 :     DomainConstraintCache *dcc = ref->dcc;
                               1258                 :                : 
                               1259                 :                :     /* Paranoia --- be sure link is nulled before trying to release */
                               1260         [ +  + ]:           5500 :     if (dcc)
                               1261                 :                :     {
                               1262                 :           5201 :         ref->constraints = NIL;
                               1263                 :           5201 :         ref->dcc = NULL;
                               1264                 :           5201 :         decr_dcc_refcount(dcc);
                               1265                 :                :     }
                               1266                 :           5500 : }
                               1267                 :                : 
                               1268                 :                : /*
                               1269                 :                :  * prep_domain_constraints --- prepare domain constraints for execution
                               1270                 :                :  *
                               1271                 :                :  * The expression trees stored in the DomainConstraintCache's list are
                               1272                 :                :  * converted to executable expression state trees stored in execctx.
                               1273                 :                :  */
                               1274                 :                : static List *
 3059                          1275                 :           1215 : prep_domain_constraints(List *constraints, MemoryContext execctx)
                               1276                 :                : {
                               1277                 :           1215 :     List       *result = NIL;
                               1278                 :                :     MemoryContext oldcxt;
                               1279                 :                :     ListCell   *lc;
                               1280                 :                : 
                               1281                 :           1215 :     oldcxt = MemoryContextSwitchTo(execctx);
                               1282                 :                : 
                               1283   [ +  -  +  +  :           2442 :     foreach(lc, constraints)
                                              +  + ]
                               1284                 :                :     {
                               1285                 :           1227 :         DomainConstraintState *r = (DomainConstraintState *) lfirst(lc);
                               1286                 :                :         DomainConstraintState *newr;
                               1287                 :                : 
                               1288                 :           1227 :         newr = makeNode(DomainConstraintState);
                               1289                 :           1227 :         newr->constrainttype = r->constrainttype;
                               1290                 :           1227 :         newr->name = r->name;
 2588 andres@anarazel.de       1291                 :           1227 :         newr->check_expr = r->check_expr;
                               1292                 :           1227 :         newr->check_exprstate = ExecInitExpr(r->check_expr, NULL);
                               1293                 :                : 
 3059 tgl@sss.pgh.pa.us        1294                 :           1227 :         result = lappend(result, newr);
                               1295                 :                :     }
                               1296                 :                : 
                               1297                 :           1215 :     MemoryContextSwitchTo(oldcxt);
                               1298                 :                : 
                               1299                 :           1215 :     return result;
                               1300                 :                : }
                               1301                 :                : 
                               1302                 :                : /*
                               1303                 :                :  * InitDomainConstraintRef --- initialize a DomainConstraintRef struct
                               1304                 :                :  *
                               1305                 :                :  * Caller must tell us the MemoryContext in which the DomainConstraintRef
                               1306                 :                :  * lives.  The ref will be cleaned up when that context is reset/deleted.
                               1307                 :                :  *
                               1308                 :                :  * Caller must also tell us whether it wants check_exprstate fields to be
                               1309                 :                :  * computed in the DomainConstraintState nodes attached to this ref.
                               1310                 :                :  * If it doesn't, we need not make a copy of the DomainConstraintState list.
                               1311                 :                :  */
                               1312                 :                : void
 3332                          1313                 :           5514 : InitDomainConstraintRef(Oid type_id, DomainConstraintRef *ref,
                               1314                 :                :                         MemoryContext refctx, bool need_exprstate)
                               1315                 :                : {
                               1316                 :                :     /* Look up the typcache entry --- we assume it survives indefinitely */
 2362                          1317                 :           5514 :     ref->tcache = lookup_type_cache(type_id, TYPECACHE_DOMAIN_CONSTR_INFO);
 2588 andres@anarazel.de       1318                 :           5514 :     ref->need_exprstate = need_exprstate;
                               1319                 :                :     /* For safety, establish the callback before acquiring a refcount */
 3059 tgl@sss.pgh.pa.us        1320                 :           5514 :     ref->refctx = refctx;
 3332                          1321                 :           5514 :     ref->dcc = NULL;
                               1322                 :           5514 :     ref->callback.func = dccref_deletion_callback;
                               1323                 :           5514 :     ref->callback.arg = (void *) ref;
                               1324                 :           5514 :     MemoryContextRegisterResetCallback(refctx, &ref->callback);
                               1325                 :                :     /* Acquire refcount if there are constraints, and set up exported list */
                               1326         [ +  + ]:           5514 :     if (ref->tcache->domainData)
                               1327                 :                :     {
                               1328                 :           5215 :         ref->dcc = ref->tcache->domainData;
                               1329                 :           5215 :         ref->dcc->dccRefCount++;
 2588 andres@anarazel.de       1330         [ +  + ]:           5215 :         if (ref->need_exprstate)
                               1331                 :           1215 :             ref->constraints = prep_domain_constraints(ref->dcc->constraints,
                               1332                 :                :                                                        ref->refctx);
                               1333                 :                :         else
                               1334                 :           4000 :             ref->constraints = ref->dcc->constraints;
                               1335                 :                :     }
                               1336                 :                :     else
 3332 tgl@sss.pgh.pa.us        1337                 :            299 :         ref->constraints = NIL;
                               1338                 :           5514 : }
                               1339                 :                : 
                               1340                 :                : /*
                               1341                 :                :  * UpdateDomainConstraintRef --- recheck validity of domain constraint info
                               1342                 :                :  *
                               1343                 :                :  * If the domain's constraint set changed, ref->constraints is updated to
                               1344                 :                :  * point at a new list of cached constraints.
                               1345                 :                :  *
                               1346                 :                :  * In the normal case where nothing happened to the domain, this is cheap
                               1347                 :                :  * enough that it's reasonable (and expected) to check before *each* use
                               1348                 :                :  * of the constraint info.
                               1349                 :                :  */
                               1350                 :                : void
                               1351                 :         169357 : UpdateDomainConstraintRef(DomainConstraintRef *ref)
                               1352                 :                : {
                               1353                 :         169357 :     TypeCacheEntry *typentry = ref->tcache;
                               1354                 :                : 
                               1355                 :                :     /* Make sure typcache entry's data is up to date */
                               1356         [ -  + ]:         169357 :     if ((typentry->flags & TCFLAGS_CHECKED_DOMAIN_CONSTRAINTS) == 0 &&
 3332 tgl@sss.pgh.pa.us        1357         [ #  # ]:UBC           0 :         typentry->typtype == TYPTYPE_DOMAIN)
                               1358                 :              0 :         load_domaintype_info(typentry);
                               1359                 :                : 
                               1360                 :                :     /* Transfer to ref object if there's new info, adjusting refcounts */
 3332 tgl@sss.pgh.pa.us        1361         [ -  + ]:CBC      169357 :     if (ref->dcc != typentry->domainData)
                               1362                 :                :     {
                               1363                 :                :         /* Paranoia --- be sure link is nulled before trying to release */
 3332 tgl@sss.pgh.pa.us        1364                 :UBC           0 :         DomainConstraintCache *dcc = ref->dcc;
                               1365                 :                : 
                               1366         [ #  # ]:              0 :         if (dcc)
                               1367                 :                :         {
                               1368                 :                :             /*
                               1369                 :                :              * Note: we just leak the previous list of executable domain
                               1370                 :                :              * constraints.  Alternatively, we could keep those in a child
                               1371                 :                :              * context of ref->refctx and free that context at this point.
                               1372                 :                :              * However, in practice this code path will be taken so seldom
                               1373                 :                :              * that the extra bookkeeping for a child context doesn't seem
                               1374                 :                :              * worthwhile; we'll just allow a leak for the lifespan of refctx.
                               1375                 :                :              */
                               1376                 :              0 :             ref->constraints = NIL;
                               1377                 :              0 :             ref->dcc = NULL;
                               1378                 :              0 :             decr_dcc_refcount(dcc);
                               1379                 :                :         }
                               1380                 :              0 :         dcc = typentry->domainData;
                               1381         [ #  # ]:              0 :         if (dcc)
                               1382                 :                :         {
                               1383                 :              0 :             ref->dcc = dcc;
                               1384                 :              0 :             dcc->dccRefCount++;
 2588 andres@anarazel.de       1385         [ #  # ]:              0 :             if (ref->need_exprstate)
                               1386                 :              0 :                 ref->constraints = prep_domain_constraints(dcc->constraints,
                               1387                 :                :                                                            ref->refctx);
                               1388                 :                :             else
                               1389                 :              0 :                 ref->constraints = dcc->constraints;
                               1390                 :                :         }
                               1391                 :                :     }
 3332 tgl@sss.pgh.pa.us        1392                 :CBC      169357 : }
                               1393                 :                : 
                               1394                 :                : /*
                               1395                 :                :  * DomainHasConstraints --- utility routine to check if a domain has constraints
                               1396                 :                :  *
                               1397                 :                :  * This is defined to return false, not fail, if type is not a domain.
                               1398                 :                :  */
                               1399                 :                : bool
                               1400                 :          13159 : DomainHasConstraints(Oid type_id)
                               1401                 :                : {
                               1402                 :                :     TypeCacheEntry *typentry;
                               1403                 :                : 
                               1404                 :                :     /*
                               1405                 :                :      * Note: a side effect is to cause the typcache's domain data to become
                               1406                 :                :      * valid.  This is fine since we'll likely need it soon if there is any.
                               1407                 :                :      */
 2362                          1408                 :          13159 :     typentry = lookup_type_cache(type_id, TYPECACHE_DOMAIN_CONSTR_INFO);
                               1409                 :                : 
 3332                          1410                 :          13159 :     return (typentry->domainData != NULL);
                               1411                 :                : }
                               1412                 :                : 
                               1413                 :                : 
                               1414                 :                : /*
                               1415                 :                :  * array_element_has_equality and friends are helper routines to check
                               1416                 :                :  * whether we should believe that array_eq and related functions will work
                               1417                 :                :  * on the given array type or composite type.
                               1418                 :                :  *
                               1419                 :                :  * The logic above may call these repeatedly on the same type entry, so we
                               1420                 :                :  * make use of the typentry->flags field to cache the results once known.
                               1421                 :                :  * Also, we assume that we'll probably want all these facts about the type
                               1422                 :                :  * if we want any, so we cache them all using only one lookup of the
                               1423                 :                :  * component datatype(s).
                               1424                 :                :  */
                               1425                 :                : 
                               1426                 :                : static bool
 4699                          1427                 :           1138 : array_element_has_equality(TypeCacheEntry *typentry)
                               1428                 :                : {
                               1429         [ +  + ]:           1138 :     if (!(typentry->flags & TCFLAGS_CHECKED_ELEM_PROPERTIES))
                               1430                 :            976 :         cache_array_element_properties(typentry);
                               1431                 :           1138 :     return (typentry->flags & TCFLAGS_HAVE_ELEM_EQUALITY) != 0;
                               1432                 :                : }
                               1433                 :                : 
                               1434                 :                : static bool
                               1435                 :           2103 : array_element_has_compare(TypeCacheEntry *typentry)
                               1436                 :                : {
                               1437         [ +  + ]:           2103 :     if (!(typentry->flags & TCFLAGS_CHECKED_ELEM_PROPERTIES))
                               1438                 :            180 :         cache_array_element_properties(typentry);
                               1439                 :           2103 :     return (typentry->flags & TCFLAGS_HAVE_ELEM_COMPARE) != 0;
                               1440                 :                : }
                               1441                 :                : 
                               1442                 :                : static bool
                               1443                 :            634 : array_element_has_hashing(TypeCacheEntry *typentry)
                               1444                 :                : {
                               1445         [ -  + ]:            634 :     if (!(typentry->flags & TCFLAGS_CHECKED_ELEM_PROPERTIES))
 4699 tgl@sss.pgh.pa.us        1446                 :UBC           0 :         cache_array_element_properties(typentry);
 4699 tgl@sss.pgh.pa.us        1447                 :CBC         634 :     return (typentry->flags & TCFLAGS_HAVE_ELEM_HASHING) != 0;
                               1448                 :                : }
                               1449                 :                : 
                               1450                 :                : static bool
 2368                          1451                 :            136 : array_element_has_extended_hashing(TypeCacheEntry *typentry)
                               1452                 :                : {
                               1453         [ -  + ]:            136 :     if (!(typentry->flags & TCFLAGS_CHECKED_ELEM_PROPERTIES))
 2368 tgl@sss.pgh.pa.us        1454                 :UBC           0 :         cache_array_element_properties(typentry);
 2368 tgl@sss.pgh.pa.us        1455                 :CBC         136 :     return (typentry->flags & TCFLAGS_HAVE_ELEM_EXTENDED_HASHING) != 0;
                               1456                 :                : }
                               1457                 :                : 
                               1458                 :                : static void
 4699                          1459                 :           1156 : cache_array_element_properties(TypeCacheEntry *typentry)
                               1460                 :                : {
 4693 bruce@momjian.us         1461                 :           1156 :     Oid         elem_type = get_base_element_type(typentry->type_id);
                               1462                 :                : 
 4699 tgl@sss.pgh.pa.us        1463         [ +  + ]:           1156 :     if (OidIsValid(elem_type))
                               1464                 :                :     {
                               1465                 :                :         TypeCacheEntry *elementry;
                               1466                 :                : 
                               1467                 :           1088 :         elementry = lookup_type_cache(elem_type,
                               1468                 :                :                                       TYPECACHE_EQ_OPR |
                               1469                 :                :                                       TYPECACHE_CMP_PROC |
                               1470                 :                :                                       TYPECACHE_HASH_PROC |
                               1471                 :                :                                       TYPECACHE_HASH_EXTENDED_PROC);
                               1472         [ +  + ]:           1088 :         if (OidIsValid(elementry->eq_opr))
                               1473                 :           1023 :             typentry->flags |= TCFLAGS_HAVE_ELEM_EQUALITY;
                               1474         [ +  + ]:           1088 :         if (OidIsValid(elementry->cmp_proc))
                               1475                 :            953 :             typentry->flags |= TCFLAGS_HAVE_ELEM_COMPARE;
                               1476         [ +  + ]:           1088 :         if (OidIsValid(elementry->hash_proc))
                               1477                 :           1017 :             typentry->flags |= TCFLAGS_HAVE_ELEM_HASHING;
 2368                          1478         [ +  + ]:           1088 :         if (OidIsValid(elementry->hash_extended_proc))
                               1479                 :           1017 :             typentry->flags |= TCFLAGS_HAVE_ELEM_EXTENDED_HASHING;
                               1480                 :                :     }
 4699                          1481                 :           1156 :     typentry->flags |= TCFLAGS_CHECKED_ELEM_PROPERTIES;
                               1482                 :           1156 : }
                               1483                 :                : 
                               1484                 :                : /*
                               1485                 :                :  * Likewise, some helper functions for composite types.
                               1486                 :                :  */
                               1487                 :                : 
                               1488                 :                : static bool
                               1489                 :            184 : record_fields_have_equality(TypeCacheEntry *typentry)
                               1490                 :                : {
                               1491         [ +  + ]:            184 :     if (!(typentry->flags & TCFLAGS_CHECKED_FIELD_PROPERTIES))
                               1492                 :            170 :         cache_record_field_properties(typentry);
                               1493                 :            184 :     return (typentry->flags & TCFLAGS_HAVE_FIELD_EQUALITY) != 0;
                               1494                 :                : }
                               1495                 :                : 
                               1496                 :                : static bool
                               1497                 :            216 : record_fields_have_compare(TypeCacheEntry *typentry)
                               1498                 :                : {
                               1499         [ +  + ]:            216 :     if (!(typentry->flags & TCFLAGS_CHECKED_FIELD_PROPERTIES))
                               1500                 :             30 :         cache_record_field_properties(typentry);
                               1501                 :            216 :     return (typentry->flags & TCFLAGS_HAVE_FIELD_COMPARE) != 0;
                               1502                 :                : }
                               1503                 :                : 
                               1504                 :                : static bool
 1242 peter@eisentraut.org     1505                 :            179 : record_fields_have_hashing(TypeCacheEntry *typentry)
                               1506                 :                : {
                               1507         [ +  + ]:            179 :     if (!(typentry->flags & TCFLAGS_CHECKED_FIELD_PROPERTIES))
                               1508                 :              3 :         cache_record_field_properties(typentry);
                               1509                 :            179 :     return (typentry->flags & TCFLAGS_HAVE_FIELD_HASHING) != 0;
                               1510                 :                : }
                               1511                 :                : 
                               1512                 :                : static bool
                               1513                 :             72 : record_fields_have_extended_hashing(TypeCacheEntry *typentry)
                               1514                 :                : {
                               1515         [ -  + ]:             72 :     if (!(typentry->flags & TCFLAGS_CHECKED_FIELD_PROPERTIES))
 1242 peter@eisentraut.org     1516                 :UBC           0 :         cache_record_field_properties(typentry);
 1242 peter@eisentraut.org     1517                 :CBC          72 :     return (typentry->flags & TCFLAGS_HAVE_FIELD_EXTENDED_HASHING) != 0;
                               1518                 :                : }
                               1519                 :                : 
                               1520                 :                : static void
 4699 tgl@sss.pgh.pa.us        1521                 :            203 : cache_record_field_properties(TypeCacheEntry *typentry)
                               1522                 :                : {
                               1523                 :                :     /*
                               1524                 :                :      * For type RECORD, we can't really tell what will work, since we don't
                               1525                 :                :      * have access here to the specific anonymous type.  Just assume that
                               1526                 :                :      * equality and comparison will (we may get a failure at runtime).  We
                               1527                 :                :      * could also claim that hashing works, but then if code that has the
                               1528                 :                :      * option between a comparison-based (sort-based) and a hash-based plan
                               1529                 :                :      * chooses hashing, stuff could fail that would otherwise work if it chose
                               1530                 :                :      * a comparison-based plan.  In practice more types support comparison
                               1531                 :                :      * than hashing.
                               1532                 :                :      */
                               1533         [ +  + ]:            203 :     if (typentry->type_id == RECORDOID)
                               1534                 :                :     {
                               1535                 :             19 :         typentry->flags |= (TCFLAGS_HAVE_FIELD_EQUALITY |
                               1536                 :                :                             TCFLAGS_HAVE_FIELD_COMPARE);
                               1537                 :                :     }
                               1538         [ +  - ]:            184 :     else if (typentry->typtype == TYPTYPE_COMPOSITE)
                               1539                 :                :     {
                               1540                 :                :         TupleDesc   tupdesc;
                               1541                 :                :         int         newflags;
                               1542                 :                :         int         i;
                               1543                 :                : 
                               1544                 :                :         /* Fetch composite type's tupdesc if we don't have it already */
                               1545         [ +  + ]:            184 :         if (typentry->tupDesc == NULL)
                               1546                 :            107 :             load_typcache_tupdesc(typentry);
                               1547                 :            184 :         tupdesc = typentry->tupDesc;
                               1548                 :                : 
                               1549                 :                :         /* Must bump the refcount while we do additional catalog lookups */
 3960                          1550                 :            184 :         IncrTupleDescRefCount(tupdesc);
                               1551                 :                : 
                               1552                 :                :         /* Have each property if all non-dropped fields have the property */
 4699                          1553                 :            184 :         newflags = (TCFLAGS_HAVE_FIELD_EQUALITY |
                               1554                 :                :                     TCFLAGS_HAVE_FIELD_COMPARE |
                               1555                 :                :                     TCFLAGS_HAVE_FIELD_HASHING |
                               1556                 :                :                     TCFLAGS_HAVE_FIELD_EXTENDED_HASHING);
                               1557         [ +  + ]:           2146 :         for (i = 0; i < tupdesc->natts; i++)
                               1558                 :                :         {
                               1559                 :                :             TypeCacheEntry *fieldentry;
 2429 andres@anarazel.de       1560                 :           2036 :             Form_pg_attribute attr = TupleDescAttr(tupdesc, i);
                               1561                 :                : 
                               1562         [ -  + ]:           2036 :             if (attr->attisdropped)
 4699 tgl@sss.pgh.pa.us        1563                 :UBC           0 :                 continue;
                               1564                 :                : 
 2429 andres@anarazel.de       1565                 :CBC        2036 :             fieldentry = lookup_type_cache(attr->atttypid,
                               1566                 :                :                                            TYPECACHE_EQ_OPR |
                               1567                 :                :                                            TYPECACHE_CMP_PROC |
                               1568                 :                :                                            TYPECACHE_HASH_PROC |
                               1569                 :                :                                            TYPECACHE_HASH_EXTENDED_PROC);
 4699 tgl@sss.pgh.pa.us        1570         [ +  + ]:           2036 :             if (!OidIsValid(fieldentry->eq_opr))
                               1571                 :             74 :                 newflags &= ~TCFLAGS_HAVE_FIELD_EQUALITY;
                               1572         [ +  + ]:           2036 :             if (!OidIsValid(fieldentry->cmp_proc))
                               1573                 :             74 :                 newflags &= ~TCFLAGS_HAVE_FIELD_COMPARE;
 1242 peter@eisentraut.org     1574         [ +  + ]:           2036 :             if (!OidIsValid(fieldentry->hash_proc))
                               1575                 :             77 :                 newflags &= ~TCFLAGS_HAVE_FIELD_HASHING;
                               1576         [ +  + ]:           2036 :             if (!OidIsValid(fieldentry->hash_extended_proc))
                               1577                 :             77 :                 newflags &= ~TCFLAGS_HAVE_FIELD_EXTENDED_HASHING;
                               1578                 :                : 
                               1579                 :                :             /* We can drop out of the loop once we disprove all bits */
 4699 tgl@sss.pgh.pa.us        1580         [ +  + ]:           2036 :             if (newflags == 0)
                               1581                 :             74 :                 break;
                               1582                 :                :         }
                               1583                 :            184 :         typentry->flags |= newflags;
                               1584                 :                : 
 3960                          1585                 :            184 :         DecrTupleDescRefCount(tupdesc);
                               1586                 :                :     }
 2362 tgl@sss.pgh.pa.us        1587         [ #  # ]:UBC           0 :     else if (typentry->typtype == TYPTYPE_DOMAIN)
                               1588                 :                :     {
                               1589                 :                :         /* If it's domain over composite, copy base type's properties */
                               1590                 :                :         TypeCacheEntry *baseentry;
                               1591                 :                : 
                               1592                 :                :         /* load up basetype info if we didn't already */
                               1593         [ #  # ]:              0 :         if (typentry->domainBaseType == InvalidOid)
                               1594                 :                :         {
                               1595                 :              0 :             typentry->domainBaseTypmod = -1;
                               1596                 :              0 :             typentry->domainBaseType =
                               1597                 :              0 :                 getBaseTypeAndTypmod(typentry->type_id,
                               1598                 :                :                                      &typentry->domainBaseTypmod);
                               1599                 :                :         }
                               1600                 :              0 :         baseentry = lookup_type_cache(typentry->domainBaseType,
                               1601                 :                :                                       TYPECACHE_EQ_OPR |
                               1602                 :                :                                       TYPECACHE_CMP_PROC |
                               1603                 :                :                                       TYPECACHE_HASH_PROC |
                               1604                 :                :                                       TYPECACHE_HASH_EXTENDED_PROC);
                               1605         [ #  # ]:              0 :         if (baseentry->typtype == TYPTYPE_COMPOSITE)
                               1606                 :                :         {
                               1607                 :              0 :             typentry->flags |= TCFLAGS_DOMAIN_BASE_IS_COMPOSITE;
                               1608                 :              0 :             typentry->flags |= baseentry->flags & (TCFLAGS_HAVE_FIELD_EQUALITY |
                               1609                 :                :                                                    TCFLAGS_HAVE_FIELD_COMPARE |
                               1610                 :                :                                                    TCFLAGS_HAVE_FIELD_HASHING |
                               1611                 :                :                                                    TCFLAGS_HAVE_FIELD_EXTENDED_HASHING);
                               1612                 :                :         }
                               1613                 :                :     }
 4699 tgl@sss.pgh.pa.us        1614                 :CBC         203 :     typentry->flags |= TCFLAGS_CHECKED_FIELD_PROPERTIES;
 7546                          1615                 :            203 : }
                               1616                 :                : 
                               1617                 :                : /*
                               1618                 :                :  * Likewise, some helper functions for range and multirange types.
                               1619                 :                :  *
                               1620                 :                :  * We can borrow the flag bits for array element properties to use for range
                               1621                 :                :  * element properties, since those flag bits otherwise have no use in a
                               1622                 :                :  * range or multirange type's typcache entry.
                               1623                 :                :  */
                               1624                 :                : 
                               1625                 :                : static bool
 2368                          1626                 :             16 : range_element_has_hashing(TypeCacheEntry *typentry)
                               1627                 :                : {
                               1628         [ +  - ]:             16 :     if (!(typentry->flags & TCFLAGS_CHECKED_ELEM_PROPERTIES))
                               1629                 :             16 :         cache_range_element_properties(typentry);
                               1630                 :             16 :     return (typentry->flags & TCFLAGS_HAVE_ELEM_HASHING) != 0;
                               1631                 :                : }
                               1632                 :                : 
                               1633                 :                : static bool
 2368 tgl@sss.pgh.pa.us        1634                 :UBC           0 : range_element_has_extended_hashing(TypeCacheEntry *typentry)
                               1635                 :                : {
                               1636         [ #  # ]:              0 :     if (!(typentry->flags & TCFLAGS_CHECKED_ELEM_PROPERTIES))
                               1637                 :              0 :         cache_range_element_properties(typentry);
                               1638                 :              0 :     return (typentry->flags & TCFLAGS_HAVE_ELEM_EXTENDED_HASHING) != 0;
                               1639                 :                : }
                               1640                 :                : 
                               1641                 :                : static void
 2368 tgl@sss.pgh.pa.us        1642                 :CBC          16 : cache_range_element_properties(TypeCacheEntry *typentry)
                               1643                 :                : {
                               1644                 :                :     /* load up subtype link if we didn't already */
                               1645         [ -  + ]:             16 :     if (typentry->rngelemtype == NULL &&
 2368 tgl@sss.pgh.pa.us        1646         [ #  # ]:UBC           0 :         typentry->typtype == TYPTYPE_RANGE)
                               1647                 :              0 :         load_rangetype_info(typentry);
                               1648                 :                : 
 2368 tgl@sss.pgh.pa.us        1649         [ +  - ]:CBC          16 :     if (typentry->rngelemtype != NULL)
                               1650                 :                :     {
                               1651                 :                :         TypeCacheEntry *elementry;
                               1652                 :                : 
                               1653                 :                :         /* might need to calculate subtype's hash function properties */
                               1654                 :             16 :         elementry = lookup_type_cache(typentry->rngelemtype->type_id,
                               1655                 :                :                                       TYPECACHE_HASH_PROC |
                               1656                 :                :                                       TYPECACHE_HASH_EXTENDED_PROC);
                               1657         [ +  + ]:             16 :         if (OidIsValid(elementry->hash_proc))
                               1658                 :             13 :             typentry->flags |= TCFLAGS_HAVE_ELEM_HASHING;
                               1659         [ +  + ]:             16 :         if (OidIsValid(elementry->hash_extended_proc))
                               1660                 :             13 :             typentry->flags |= TCFLAGS_HAVE_ELEM_EXTENDED_HASHING;
                               1661                 :                :     }
                               1662                 :             16 :     typentry->flags |= TCFLAGS_CHECKED_ELEM_PROPERTIES;
                               1663                 :             16 : }
                               1664                 :                : 
                               1665                 :                : static bool
 1211 akorotkov@postgresql     1666                 :              9 : multirange_element_has_hashing(TypeCacheEntry *typentry)
                               1667                 :                : {
                               1668         [ +  - ]:              9 :     if (!(typentry->flags & TCFLAGS_CHECKED_ELEM_PROPERTIES))
                               1669                 :              9 :         cache_multirange_element_properties(typentry);
                               1670                 :              9 :     return (typentry->flags & TCFLAGS_HAVE_ELEM_HASHING) != 0;
                               1671                 :                : }
                               1672                 :                : 
                               1673                 :                : static bool
 1211 akorotkov@postgresql     1674                 :UBC           0 : multirange_element_has_extended_hashing(TypeCacheEntry *typentry)
                               1675                 :                : {
                               1676         [ #  # ]:              0 :     if (!(typentry->flags & TCFLAGS_CHECKED_ELEM_PROPERTIES))
                               1677                 :              0 :         cache_multirange_element_properties(typentry);
                               1678                 :              0 :     return (typentry->flags & TCFLAGS_HAVE_ELEM_EXTENDED_HASHING) != 0;
                               1679                 :                : }
                               1680                 :                : 
                               1681                 :                : static void
 1211 akorotkov@postgresql     1682                 :CBC           9 : cache_multirange_element_properties(TypeCacheEntry *typentry)
                               1683                 :                : {
                               1684                 :                :     /* load up range link if we didn't already */
                               1685         [ -  + ]:              9 :     if (typentry->rngtype == NULL &&
 1211 akorotkov@postgresql     1686         [ #  # ]:UBC           0 :         typentry->typtype == TYPTYPE_MULTIRANGE)
                               1687                 :              0 :         load_multirangetype_info(typentry);
                               1688                 :                : 
 1211 akorotkov@postgresql     1689   [ +  -  +  - ]:CBC           9 :     if (typentry->rngtype != NULL && typentry->rngtype->rngelemtype != NULL)
                               1690                 :                :     {
                               1691                 :                :         TypeCacheEntry *elementry;
                               1692                 :                : 
                               1693                 :                :         /* might need to calculate subtype's hash function properties */
                               1694                 :              9 :         elementry = lookup_type_cache(typentry->rngtype->rngelemtype->type_id,
                               1695                 :                :                                       TYPECACHE_HASH_PROC |
                               1696                 :                :                                       TYPECACHE_HASH_EXTENDED_PROC);
                               1697         [ +  + ]:              9 :         if (OidIsValid(elementry->hash_proc))
                               1698                 :              6 :             typentry->flags |= TCFLAGS_HAVE_ELEM_HASHING;
                               1699         [ +  + ]:              9 :         if (OidIsValid(elementry->hash_extended_proc))
                               1700                 :              6 :             typentry->flags |= TCFLAGS_HAVE_ELEM_EXTENDED_HASHING;
                               1701                 :                :     }
                               1702                 :              9 :     typentry->flags |= TCFLAGS_CHECKED_ELEM_PROPERTIES;
                               1703                 :              9 : }
                               1704                 :                : 
                               1705                 :                : /*
                               1706                 :                :  * Make sure that RecordCacheArray and RecordIdentifierArray are large enough
                               1707                 :                :  * to store 'typmod'.
                               1708                 :                :  */
                               1709                 :                : static void
 2404 andres@anarazel.de       1710                 :           7022 : ensure_record_cache_typmod_slot_exists(int32 typmod)
                               1711                 :                : {
                               1712         [ +  + ]:           7022 :     if (RecordCacheArray == NULL)
                               1713                 :                :     {
  214 tmunro@postgresql.or     1714                 :           3110 :         RecordCacheArray = (RecordCacheArrayEntry *)
                               1715                 :           3110 :             MemoryContextAllocZero(CacheMemoryContext,
                               1716                 :                :                                    64 * sizeof(RecordCacheArrayEntry));
 2404 andres@anarazel.de       1717                 :           3110 :         RecordCacheArrayLen = 64;
                               1718                 :                :     }
                               1719                 :                : 
                               1720         [ -  + ]:           7022 :     if (typmod >= RecordCacheArrayLen)
                               1721                 :                :     {
 1018 drowley@postgresql.o     1722                 :UBC           0 :         int32       newlen = pg_nextpower2_32(typmod + 1);
                               1723                 :                : 
  214 tmunro@postgresql.or     1724                 :              0 :         RecordCacheArray = repalloc0_array(RecordCacheArray,
                               1725                 :                :                                            RecordCacheArrayEntry,
                               1726                 :                :                                            RecordCacheArrayLen,
                               1727                 :                :                                            newlen);
 2404 andres@anarazel.de       1728                 :              0 :         RecordCacheArrayLen = newlen;
                               1729                 :                :     }
 2404 andres@anarazel.de       1730                 :CBC        7022 : }
                               1731                 :                : 
                               1732                 :                : /*
                               1733                 :                :  * lookup_rowtype_tupdesc_internal --- internal routine to lookup a rowtype
                               1734                 :                :  *
                               1735                 :                :  * Same API as lookup_rowtype_tupdesc_noerror, but the returned tupdesc
                               1736                 :                :  * hasn't had its refcount bumped.
                               1737                 :                :  */
                               1738                 :                : static TupleDesc
 6512 tgl@sss.pgh.pa.us        1739                 :          59040 : lookup_rowtype_tupdesc_internal(Oid type_id, int32 typmod, bool noError)
                               1740                 :                : {
 7318                          1741         [ +  + ]:          59040 :     if (type_id != RECORDOID)
                               1742                 :                :     {
                               1743                 :                :         /*
                               1744                 :                :          * It's a named composite type, so use the regular typcache.
                               1745                 :                :          */
                               1746                 :                :         TypeCacheEntry *typentry;
                               1747                 :                : 
                               1748                 :          27509 :         typentry = lookup_type_cache(type_id, TYPECACHE_TUPDESC);
 7253                          1749   [ -  +  -  - ]:          27509 :         if (typentry->tupDesc == NULL && !noError)
 7318 tgl@sss.pgh.pa.us        1750         [ #  # ]:UBC           0 :             ereport(ERROR,
                               1751                 :                :                     (errcode(ERRCODE_WRONG_OBJECT_TYPE),
                               1752                 :                :                      errmsg("type %s is not composite",
                               1753                 :                :                             format_type_be(type_id))));
 7318 tgl@sss.pgh.pa.us        1754                 :CBC       27509 :         return typentry->tupDesc;
                               1755                 :                :     }
                               1756                 :                :     else
                               1757                 :                :     {
                               1758                 :                :         /*
                               1759                 :                :          * It's a transient record type, so look in our record-type table.
                               1760                 :                :          */
 2404 andres@anarazel.de       1761         [ +  + ]:          31531 :         if (typmod >= 0)
                               1762                 :                :         {
                               1763                 :                :             /* It is already in our local cache? */
                               1764         [ +  + ]:          31523 :             if (typmod < RecordCacheArrayLen &&
  214 tmunro@postgresql.or     1765         [ +  + ]:          31520 :                 RecordCacheArray[typmod].tupdesc != NULL)
                               1766                 :          31508 :                 return RecordCacheArray[typmod].tupdesc;
                               1767                 :                : 
                               1768                 :                :             /* Are we attached to a shared record typmod registry? */
 2404 andres@anarazel.de       1769         [ +  - ]:             15 :             if (CurrentSession->shared_typmod_registry != NULL)
                               1770                 :                :             {
                               1771                 :                :                 SharedTypmodTableEntry *entry;
                               1772                 :                : 
                               1773                 :                :                 /* Try to find it in the shared typmod index. */
                               1774                 :             15 :                 entry = dshash_find(CurrentSession->shared_typmod_table,
                               1775                 :                :                                     &typmod, false);
                               1776         [ +  - ]:             15 :                 if (entry != NULL)
                               1777                 :                :                 {
                               1778                 :                :                     TupleDesc   tupdesc;
                               1779                 :                : 
                               1780                 :                :                     tupdesc = (TupleDesc)
                               1781                 :             15 :                         dsa_get_address(CurrentSession->area,
                               1782                 :                :                                         entry->shared_tupdesc);
                               1783         [ -  + ]:             15 :                     Assert(typmod == tupdesc->tdtypmod);
                               1784                 :                : 
                               1785                 :                :                     /* We may need to extend the local RecordCacheArray. */
                               1786                 :             15 :                     ensure_record_cache_typmod_slot_exists(typmod);
                               1787                 :                : 
                               1788                 :                :                     /*
                               1789                 :                :                      * Our local array can now point directly to the TupleDesc
                               1790                 :                :                      * in shared memory, which is non-reference-counted.
                               1791                 :                :                      */
  214 tmunro@postgresql.or     1792                 :             15 :                     RecordCacheArray[typmod].tupdesc = tupdesc;
 2404 andres@anarazel.de       1793         [ -  + ]:             15 :                     Assert(tupdesc->tdrefcount == -1);
                               1794                 :                : 
                               1795                 :                :                     /*
                               1796                 :                :                      * We don't share tupdesc identifiers across processes, so
                               1797                 :                :                      * assign one locally.
                               1798                 :                :                      */
  214 tmunro@postgresql.or     1799                 :             15 :                     RecordCacheArray[typmod].id = ++tupledesc_id_counter;
                               1800                 :                : 
 2404 andres@anarazel.de       1801                 :             15 :                     dshash_release_lock(CurrentSession->shared_typmod_table,
                               1802                 :                :                                         entry);
                               1803                 :                : 
  214 tmunro@postgresql.or     1804                 :             15 :                     return RecordCacheArray[typmod].tupdesc;
                               1805                 :                :                 }
                               1806                 :                :             }
                               1807                 :                :         }
                               1808                 :                : 
 2404 andres@anarazel.de       1809         [ -  + ]:              8 :         if (!noError)
 2404 andres@anarazel.de       1810         [ #  # ]:UBC           0 :             ereport(ERROR,
                               1811                 :                :                     (errcode(ERRCODE_WRONG_OBJECT_TYPE),
                               1812                 :                :                      errmsg("record type has not been registered")));
 2404 andres@anarazel.de       1813                 :CBC           8 :         return NULL;
                               1814                 :                :     }
                               1815                 :                : }
                               1816                 :                : 
                               1817                 :                : /*
                               1818                 :                :  * lookup_rowtype_tupdesc
                               1819                 :                :  *
                               1820                 :                :  * Given a typeid/typmod that should describe a known composite type,
                               1821                 :                :  * return the tuple descriptor for the type.  Will ereport on failure.
                               1822                 :                :  * (Use ereport because this is reachable with user-specified OIDs,
                               1823                 :                :  * for example from record_in().)
                               1824                 :                :  *
                               1825                 :                :  * Note: on success, we increment the refcount of the returned TupleDesc,
                               1826                 :                :  * and log the reference in CurrentResourceOwner.  Caller must call
                               1827                 :                :  * ReleaseTupleDesc when done using the tupdesc.  (There are some
                               1828                 :                :  * cases in which the returned tupdesc is not refcounted, in which
                               1829                 :                :  * case PinTupleDesc/ReleaseTupleDesc are no-ops; but in these cases
                               1830                 :                :  * the tupdesc is guaranteed to live till process exit.)
                               1831                 :                :  */
                               1832                 :                : TupleDesc
 6512 tgl@sss.pgh.pa.us        1833                 :          35833 : lookup_rowtype_tupdesc(Oid type_id, int32 typmod)
                               1834                 :                : {
                               1835                 :                :     TupleDesc   tupDesc;
                               1836                 :                : 
                               1837                 :          35833 :     tupDesc = lookup_rowtype_tupdesc_internal(type_id, typmod, false);
 2404 andres@anarazel.de       1838         [ +  + ]:          35833 :     PinTupleDesc(tupDesc);
 6512 tgl@sss.pgh.pa.us        1839                 :          35833 :     return tupDesc;
                               1840                 :                : }
                               1841                 :                : 
                               1842                 :                : /*
                               1843                 :                :  * lookup_rowtype_tupdesc_noerror
                               1844                 :                :  *
                               1845                 :                :  * As above, but if the type is not a known composite type and noError
                               1846                 :                :  * is true, returns NULL instead of ereport'ing.  (Note that if a bogus
                               1847                 :                :  * type_id is passed, you'll get an ereport anyway.)
                               1848                 :                :  */
                               1849                 :                : TupleDesc
                               1850                 :             10 : lookup_rowtype_tupdesc_noerror(Oid type_id, int32 typmod, bool noError)
                               1851                 :                : {
                               1852                 :                :     TupleDesc   tupDesc;
                               1853                 :                : 
                               1854                 :             10 :     tupDesc = lookup_rowtype_tupdesc_internal(type_id, typmod, noError);
                               1855         [ +  - ]:             10 :     if (tupDesc != NULL)
 2404 andres@anarazel.de       1856         [ +  - ]:             10 :         PinTupleDesc(tupDesc);
 6512 tgl@sss.pgh.pa.us        1857                 :             10 :     return tupDesc;
                               1858                 :                : }
                               1859                 :                : 
                               1860                 :                : /*
                               1861                 :                :  * lookup_rowtype_tupdesc_copy
                               1862                 :                :  *
                               1863                 :                :  * Like lookup_rowtype_tupdesc(), but the returned TupleDesc has been
                               1864                 :                :  * copied into the CurrentMemoryContext and is not reference-counted.
                               1865                 :                :  */
                               1866                 :                : TupleDesc
                               1867                 :          23188 : lookup_rowtype_tupdesc_copy(Oid type_id, int32 typmod)
                               1868                 :                : {
                               1869                 :                :     TupleDesc   tmp;
                               1870                 :                : 
                               1871                 :          23188 :     tmp = lookup_rowtype_tupdesc_internal(type_id, typmod, false);
                               1872                 :          23188 :     return CreateTupleDescCopyConstr(tmp);
                               1873                 :                : }
                               1874                 :                : 
                               1875                 :                : /*
                               1876                 :                :  * lookup_rowtype_tupdesc_domain
                               1877                 :                :  *
                               1878                 :                :  * Same as lookup_rowtype_tupdesc_noerror(), except that the type can also be
                               1879                 :                :  * a domain over a named composite type; so this is effectively equivalent to
                               1880                 :                :  * lookup_rowtype_tupdesc_noerror(getBaseType(type_id), typmod, noError)
                               1881                 :                :  * except for being a tad faster.
                               1882                 :                :  *
                               1883                 :                :  * Note: the reason we don't fold the look-through-domain behavior into plain
                               1884                 :                :  * lookup_rowtype_tupdesc() is that we want callers to know they might be
                               1885                 :                :  * dealing with a domain.  Otherwise they might construct a tuple that should
                               1886                 :                :  * be of the domain type, but not apply domain constraints.
                               1887                 :                :  */
                               1888                 :                : TupleDesc
 2362                          1889                 :           1064 : lookup_rowtype_tupdesc_domain(Oid type_id, int32 typmod, bool noError)
                               1890                 :                : {
                               1891                 :                :     TupleDesc   tupDesc;
                               1892                 :                : 
                               1893         [ +  + ]:           1064 :     if (type_id != RECORDOID)
                               1894                 :                :     {
                               1895                 :                :         /*
                               1896                 :                :          * Check for domain or named composite type.  We might as well load
                               1897                 :                :          * whichever data is needed.
                               1898                 :                :          */
                               1899                 :                :         TypeCacheEntry *typentry;
                               1900                 :                : 
                               1901                 :           1055 :         typentry = lookup_type_cache(type_id,
                               1902                 :                :                                      TYPECACHE_TUPDESC |
                               1903                 :                :                                      TYPECACHE_DOMAIN_BASE_INFO);
                               1904         [ +  + ]:           1055 :         if (typentry->typtype == TYPTYPE_DOMAIN)
                               1905                 :             10 :             return lookup_rowtype_tupdesc_noerror(typentry->domainBaseType,
                               1906                 :                :                                                   typentry->domainBaseTypmod,
                               1907                 :                :                                                   noError);
                               1908   [ -  +  -  - ]:           1045 :         if (typentry->tupDesc == NULL && !noError)
 2362 tgl@sss.pgh.pa.us        1909         [ #  # ]:UBC           0 :             ereport(ERROR,
                               1910                 :                :                     (errcode(ERRCODE_WRONG_OBJECT_TYPE),
                               1911                 :                :                      errmsg("type %s is not composite",
                               1912                 :                :                             format_type_be(type_id))));
 2362 tgl@sss.pgh.pa.us        1913                 :CBC        1045 :         tupDesc = typentry->tupDesc;
                               1914                 :                :     }
                               1915                 :                :     else
                               1916                 :              9 :         tupDesc = lookup_rowtype_tupdesc_internal(type_id, typmod, noError);
                               1917         [ +  + ]:           1054 :     if (tupDesc != NULL)
                               1918         [ +  - ]:           1046 :         PinTupleDesc(tupDesc);
                               1919                 :           1054 :     return tupDesc;
                               1920                 :                : }
                               1921                 :                : 
                               1922                 :                : /*
                               1923                 :                :  * Hash function for the hash table of RecordCacheEntry.
                               1924                 :                :  */
                               1925                 :                : static uint32
 2427 andres@anarazel.de       1926                 :         169112 : record_type_typmod_hash(const void *data, size_t size)
                               1927                 :                : {
                               1928                 :         169112 :     RecordCacheEntry *entry = (RecordCacheEntry *) data;
                               1929                 :                : 
   28 peter@eisentraut.org     1930                 :GNC      169112 :     return hashRowType(entry->tupdesc);
                               1931                 :                : }
                               1932                 :                : 
                               1933                 :                : /*
                               1934                 :                :  * Match function for the hash table of RecordCacheEntry.
                               1935                 :                :  */
                               1936                 :                : static int
 2427 andres@anarazel.de       1937                 :CBC      156627 : record_type_typmod_compare(const void *a, const void *b, size_t size)
                               1938                 :                : {
                               1939                 :         156627 :     RecordCacheEntry *left = (RecordCacheEntry *) a;
                               1940                 :         156627 :     RecordCacheEntry *right = (RecordCacheEntry *) b;
                               1941                 :                : 
   28 peter@eisentraut.org     1942                 :GNC      156627 :     return equalRowTypes(left->tupdesc, right->tupdesc) ? 0 : 1;
                               1943                 :                : }
                               1944                 :                : 
                               1945                 :                : /*
                               1946                 :                :  * assign_record_type_typmod
                               1947                 :                :  *
                               1948                 :                :  * Given a tuple descriptor for a RECORD type, find or create a cache entry
                               1949                 :                :  * for the type, and set the tupdesc's tdtypmod field to a value that will
                               1950                 :                :  * identify this cache entry to lookup_rowtype_tupdesc.
                               1951                 :                :  */
                               1952                 :                : void
 7318 tgl@sss.pgh.pa.us        1953                 :CBC      162105 : assign_record_type_typmod(TupleDesc tupDesc)
                               1954                 :                : {
                               1955                 :                :     RecordCacheEntry *recentry;
                               1956                 :                :     TupleDesc   entDesc;
                               1957                 :                :     bool        found;
                               1958                 :                :     MemoryContext oldcxt;
                               1959                 :                : 
                               1960         [ -  + ]:         162105 :     Assert(tupDesc->tdtypeid == RECORDOID);
                               1961                 :                : 
                               1962         [ +  + ]:         162105 :     if (RecordCacheHash == NULL)
                               1963                 :                :     {
                               1964                 :                :         /* First time through: initialize the hash table */
                               1965                 :                :         HASHCTL     ctl;
                               1966                 :                : 
 2427 andres@anarazel.de       1967                 :           3110 :         ctl.keysize = sizeof(TupleDesc);    /* just the pointer */
 7318 tgl@sss.pgh.pa.us        1968                 :           3110 :         ctl.entrysize = sizeof(RecordCacheEntry);
 2427 andres@anarazel.de       1969                 :           3110 :         ctl.hash = record_type_typmod_hash;
                               1970                 :           3110 :         ctl.match = record_type_typmod_compare;
 7318 tgl@sss.pgh.pa.us        1971                 :           3110 :         RecordCacheHash = hash_create("Record information cache", 64,
                               1972                 :                :                                       &ctl,
                               1973                 :                :                                       HASH_ELEM | HASH_FUNCTION | HASH_COMPARE);
                               1974                 :                : 
                               1975                 :                :         /* Also make sure CacheMemoryContext exists */
 5222                          1976         [ -  + ]:           3110 :         if (!CacheMemoryContext)
 5222 tgl@sss.pgh.pa.us        1977                 :UBC           0 :             CreateCacheMemoryContext();
                               1978                 :                :     }
                               1979                 :                : 
                               1980                 :                :     /*
                               1981                 :                :      * Find a hashtable entry for this tuple descriptor. We don't use
                               1982                 :                :      * HASH_ENTER yet, because if it's missing, we need to make sure that all
                               1983                 :                :      * the allocations succeed before we create the new entry.
                               1984                 :                :      */
 7318 tgl@sss.pgh.pa.us        1985                 :CBC      162105 :     recentry = (RecordCacheEntry *) hash_search(RecordCacheHash,
                               1986                 :                :                                                 &tupDesc,
                               1987                 :                :                                                 HASH_FIND, &found);
 2427 andres@anarazel.de       1988   [ +  +  +  - ]:         162105 :     if (found && recentry->tupdesc != NULL)
                               1989                 :                :     {
                               1990                 :         155098 :         tupDesc->tdtypmod = recentry->tupdesc->tdtypmod;
                               1991                 :         155098 :         return;
                               1992                 :                :     }
                               1993                 :                : 
                               1994                 :                :     /* Not present, so need to manufacture an entry */
 7318 tgl@sss.pgh.pa.us        1995                 :           7007 :     oldcxt = MemoryContextSwitchTo(CacheMemoryContext);
                               1996                 :                : 
                               1997                 :                :     /* Look in the SharedRecordTypmodRegistry, if attached */
 2404 andres@anarazel.de       1998                 :           7007 :     entDesc = find_or_make_matching_shared_tupledesc(tupDesc);
                               1999         [ +  + ]:           7007 :     if (entDesc == NULL)
                               2000                 :                :     {
                               2001                 :                :         /*
                               2002                 :                :          * Make sure we have room before we CreateTupleDescCopy() or advance
                               2003                 :                :          * NextRecordTypmod.
                               2004                 :                :          */
 1010 jdavis@postgresql.or     2005                 :           6974 :         ensure_record_cache_typmod_slot_exists(NextRecordTypmod);
                               2006                 :                : 
                               2007                 :                :         /* Reference-counted local cache only. */
 2404 andres@anarazel.de       2008                 :           6974 :         entDesc = CreateTupleDescCopy(tupDesc);
                               2009                 :           6974 :         entDesc->tdrefcount = 1;
                               2010                 :           6974 :         entDesc->tdtypmod = NextRecordTypmod++;
                               2011                 :                :     }
                               2012                 :                :     else
                               2013                 :                :     {
 1010 jdavis@postgresql.or     2014                 :             33 :         ensure_record_cache_typmod_slot_exists(entDesc->tdtypmod);
                               2015                 :                :     }
                               2016                 :                : 
  214 tmunro@postgresql.or     2017                 :           7007 :     RecordCacheArray[entDesc->tdtypmod].tupdesc = entDesc;
                               2018                 :                : 
                               2019                 :                :     /* Assign a unique tupdesc identifier, too. */
                               2020                 :           7007 :     RecordCacheArray[entDesc->tdtypmod].id = ++tupledesc_id_counter;
                               2021                 :                : 
                               2022                 :                :     /* Fully initialized; create the hash table entry */
 1010 jdavis@postgresql.or     2023                 :           7007 :     recentry = (RecordCacheEntry *) hash_search(RecordCacheHash,
                               2024                 :                :                                                 &tupDesc,
                               2025                 :                :                                                 HASH_ENTER, NULL);
                               2026                 :           7007 :     recentry->tupdesc = entDesc;
                               2027                 :                : 
                               2028                 :                :     /* Update the caller's tuple descriptor. */
 2404 andres@anarazel.de       2029                 :           7007 :     tupDesc->tdtypmod = entDesc->tdtypmod;
                               2030                 :                : 
                               2031                 :           7007 :     MemoryContextSwitchTo(oldcxt);
                               2032                 :                : }
                               2033                 :                : 
                               2034                 :                : /*
                               2035                 :                :  * assign_record_type_identifier
                               2036                 :                :  *
                               2037                 :                :  * Get an identifier, which will be unique over the lifespan of this backend
                               2038                 :                :  * process, for the current tuple descriptor of the specified composite type.
                               2039                 :                :  * For named composite types, the value is guaranteed to change if the type's
                               2040                 :                :  * definition does.  For registered RECORD types, the value will not change
                               2041                 :                :  * once assigned, since the registered type won't either.  If an anonymous
                               2042                 :                :  * RECORD type is specified, we return a new identifier on each call.
                               2043                 :                :  */
                               2044                 :                : uint64
 2252 tgl@sss.pgh.pa.us        2045                 :           2740 : assign_record_type_identifier(Oid type_id, int32 typmod)
                               2046                 :                : {
                               2047         [ -  + ]:           2740 :     if (type_id != RECORDOID)
                               2048                 :                :     {
                               2049                 :                :         /*
                               2050                 :                :          * It's a named composite type, so use the regular typcache.
                               2051                 :                :          */
                               2052                 :                :         TypeCacheEntry *typentry;
                               2053                 :                : 
 2252 tgl@sss.pgh.pa.us        2054                 :UBC           0 :         typentry = lookup_type_cache(type_id, TYPECACHE_TUPDESC);
                               2055         [ #  # ]:              0 :         if (typentry->tupDesc == NULL)
                               2056         [ #  # ]:              0 :             ereport(ERROR,
                               2057                 :                :                     (errcode(ERRCODE_WRONG_OBJECT_TYPE),
                               2058                 :                :                      errmsg("type %s is not composite",
                               2059                 :                :                             format_type_be(type_id))));
                               2060         [ #  # ]:              0 :         Assert(typentry->tupDesc_identifier != 0);
                               2061                 :              0 :         return typentry->tupDesc_identifier;
                               2062                 :                :     }
                               2063                 :                :     else
                               2064                 :                :     {
                               2065                 :                :         /*
                               2066                 :                :          * It's a transient record type, so look in our record-type table.
                               2067                 :                :          */
 2252 tgl@sss.pgh.pa.us        2068   [ +  +  +  - ]:CBC        2740 :         if (typmod >= 0 && typmod < RecordCacheArrayLen &&
  214 tmunro@postgresql.or     2069         [ +  - ]:             30 :             RecordCacheArray[typmod].tupdesc != NULL)
                               2070                 :                :         {
                               2071         [ -  + ]:             30 :             Assert(RecordCacheArray[typmod].id != 0);
                               2072                 :             30 :             return RecordCacheArray[typmod].id;
                               2073                 :                :         }
                               2074                 :                : 
                               2075                 :                :         /* For anonymous or unrecognized record type, generate a new ID */
 2252 tgl@sss.pgh.pa.us        2076                 :           2710 :         return ++tupledesc_id_counter;
                               2077                 :                :     }
                               2078                 :                : }
                               2079                 :                : 
                               2080                 :                : /*
                               2081                 :                :  * Return the amount of shmem required to hold a SharedRecordTypmodRegistry.
                               2082                 :                :  * This exists only to avoid exposing private innards of
                               2083                 :                :  * SharedRecordTypmodRegistry in a header.
                               2084                 :                :  */
                               2085                 :                : size_t
 2404 andres@anarazel.de       2086                 :             59 : SharedRecordTypmodRegistryEstimate(void)
                               2087                 :                : {
                               2088                 :             59 :     return sizeof(SharedRecordTypmodRegistry);
                               2089                 :                : }
                               2090                 :                : 
                               2091                 :                : /*
                               2092                 :                :  * Initialize 'registry' in a pre-existing shared memory region, which must be
                               2093                 :                :  * maximally aligned and have space for SharedRecordTypmodRegistryEstimate()
                               2094                 :                :  * bytes.
                               2095                 :                :  *
                               2096                 :                :  * 'area' will be used to allocate shared memory space as required for the
                               2097                 :                :  * typemod registration.  The current process, expected to be a leader process
                               2098                 :                :  * in a parallel query, will be attached automatically and its current record
                               2099                 :                :  * types will be loaded into *registry.  While attached, all calls to
                               2100                 :                :  * assign_record_type_typmod will use the shared registry.  Worker backends
                               2101                 :                :  * will need to attach explicitly.
                               2102                 :                :  *
                               2103                 :                :  * Note that this function takes 'area' and 'segment' as arguments rather than
                               2104                 :                :  * accessing them via CurrentSession, because they aren't installed there
                               2105                 :                :  * until after this function runs.
                               2106                 :                :  */
                               2107                 :                : void
                               2108                 :             59 : SharedRecordTypmodRegistryInit(SharedRecordTypmodRegistry *registry,
                               2109                 :                :                                dsm_segment *segment,
                               2110                 :                :                                dsa_area *area)
                               2111                 :                : {
                               2112                 :                :     MemoryContext old_context;
                               2113                 :                :     dshash_table *record_table;
                               2114                 :                :     dshash_table *typmod_table;
                               2115                 :                :     int32       typmod;
                               2116                 :                : 
                               2117         [ -  + ]:             59 :     Assert(!IsParallelWorker());
                               2118                 :                : 
                               2119                 :                :     /* We can't already be attached to a shared registry. */
                               2120         [ -  + ]:             59 :     Assert(CurrentSession->shared_typmod_registry == NULL);
                               2121         [ -  + ]:             59 :     Assert(CurrentSession->shared_record_table == NULL);
                               2122         [ -  + ]:             59 :     Assert(CurrentSession->shared_typmod_table == NULL);
                               2123                 :                : 
                               2124                 :             59 :     old_context = MemoryContextSwitchTo(TopMemoryContext);
                               2125                 :                : 
                               2126                 :                :     /* Create the hash table of tuple descriptors indexed by themselves. */
                               2127                 :             59 :     record_table = dshash_create(area, &srtr_record_table_params, area);
                               2128                 :                : 
                               2129                 :                :     /* Create the hash table of tuple descriptors indexed by typmod. */
                               2130                 :             59 :     typmod_table = dshash_create(area, &srtr_typmod_table_params, NULL);
                               2131                 :                : 
                               2132                 :             59 :     MemoryContextSwitchTo(old_context);
                               2133                 :                : 
                               2134                 :                :     /* Initialize the SharedRecordTypmodRegistry. */
                               2135                 :             59 :     registry->record_table_handle = dshash_get_hash_table_handle(record_table);
                               2136                 :             59 :     registry->typmod_table_handle = dshash_get_hash_table_handle(typmod_table);
                               2137                 :             59 :     pg_atomic_init_u32(&registry->next_typmod, NextRecordTypmod);
                               2138                 :                : 
                               2139                 :                :     /*
                               2140                 :                :      * Copy all entries from this backend's private registry into the shared
                               2141                 :                :      * registry.
                               2142                 :                :      */
                               2143         [ +  + ]:            106 :     for (typmod = 0; typmod < NextRecordTypmod; ++typmod)
                               2144                 :                :     {
                               2145                 :                :         SharedTypmodTableEntry *typmod_table_entry;
                               2146                 :                :         SharedRecordTableEntry *record_table_entry;
                               2147                 :                :         SharedRecordTableKey record_table_key;
                               2148                 :                :         dsa_pointer shared_dp;
                               2149                 :                :         TupleDesc   tupdesc;
                               2150                 :                :         bool        found;
                               2151                 :                : 
  214 tmunro@postgresql.or     2152                 :             47 :         tupdesc = RecordCacheArray[typmod].tupdesc;
 2404 andres@anarazel.de       2153         [ -  + ]:             47 :         if (tupdesc == NULL)
 2404 andres@anarazel.de       2154                 :UBC           0 :             continue;
                               2155                 :                : 
                               2156                 :                :         /* Copy the TupleDesc into shared memory. */
 2404 andres@anarazel.de       2157                 :CBC          47 :         shared_dp = share_tupledesc(area, tupdesc, typmod);
                               2158                 :                : 
                               2159                 :                :         /* Insert into the typmod table. */
                               2160                 :             47 :         typmod_table_entry = dshash_find_or_insert(typmod_table,
                               2161                 :             47 :                                                    &tupdesc->tdtypmod,
                               2162                 :                :                                                    &found);
                               2163         [ -  + ]:             47 :         if (found)
 2404 andres@anarazel.de       2164         [ #  # ]:UBC           0 :             elog(ERROR, "cannot create duplicate shared record typmod");
 2404 andres@anarazel.de       2165                 :CBC          47 :         typmod_table_entry->typmod = tupdesc->tdtypmod;
                               2166                 :             47 :         typmod_table_entry->shared_tupdesc = shared_dp;
                               2167                 :             47 :         dshash_release_lock(typmod_table, typmod_table_entry);
                               2168                 :                : 
                               2169                 :                :         /* Insert into the record table. */
                               2170                 :             47 :         record_table_key.shared = false;
 2403 tgl@sss.pgh.pa.us        2171                 :             47 :         record_table_key.u.local_tupdesc = tupdesc;
 2404 andres@anarazel.de       2172                 :             47 :         record_table_entry = dshash_find_or_insert(record_table,
                               2173                 :                :                                                    &record_table_key,
                               2174                 :                :                                                    &found);
                               2175         [ +  - ]:             47 :         if (!found)
                               2176                 :                :         {
                               2177                 :             47 :             record_table_entry->key.shared = true;
 2403 tgl@sss.pgh.pa.us        2178                 :             47 :             record_table_entry->key.u.shared_tupdesc = shared_dp;
                               2179                 :                :         }
 2404 andres@anarazel.de       2180                 :             47 :         dshash_release_lock(record_table, record_table_entry);
                               2181                 :                :     }
                               2182                 :                : 
                               2183                 :                :     /*
                               2184                 :                :      * Set up the global state that will tell assign_record_type_typmod and
                               2185                 :                :      * lookup_rowtype_tupdesc_internal about the shared registry.
                               2186                 :                :      */
                               2187                 :             59 :     CurrentSession->shared_record_table = record_table;
                               2188                 :             59 :     CurrentSession->shared_typmod_table = typmod_table;
                               2189                 :             59 :     CurrentSession->shared_typmod_registry = registry;
                               2190                 :                : 
                               2191                 :                :     /*
                               2192                 :                :      * We install a detach hook in the leader, but only to handle cleanup on
                               2193                 :                :      * failure during GetSessionDsmHandle().  Once GetSessionDsmHandle() pins
                               2194                 :                :      * the memory, the leader process will use a shared registry until it
                               2195                 :                :      * exits.
                               2196                 :                :      */
                               2197                 :             59 :     on_dsm_detach(segment, shared_record_typmod_registry_detach, (Datum) 0);
                               2198                 :             59 : }
                               2199                 :                : 
                               2200                 :                : /*
                               2201                 :                :  * Attach to 'registry', which must have been initialized already by another
                               2202                 :                :  * backend.  Future calls to assign_record_type_typmod and
                               2203                 :                :  * lookup_rowtype_tupdesc_internal will use the shared registry until the
                               2204                 :                :  * current session is detached.
                               2205                 :                :  */
                               2206                 :                : void
                               2207                 :           1322 : SharedRecordTypmodRegistryAttach(SharedRecordTypmodRegistry *registry)
                               2208                 :                : {
                               2209                 :                :     MemoryContext old_context;
                               2210                 :                :     dshash_table *record_table;
                               2211                 :                :     dshash_table *typmod_table;
                               2212                 :                : 
                               2213         [ -  + ]:           1322 :     Assert(IsParallelWorker());
                               2214                 :                : 
                               2215                 :                :     /* We can't already be attached to a shared registry. */
                               2216         [ -  + ]:           1322 :     Assert(CurrentSession != NULL);
                               2217         [ -  + ]:           1322 :     Assert(CurrentSession->segment != NULL);
                               2218         [ -  + ]:           1322 :     Assert(CurrentSession->area != NULL);
                               2219         [ -  + ]:           1322 :     Assert(CurrentSession->shared_typmod_registry == NULL);
                               2220         [ -  + ]:           1322 :     Assert(CurrentSession->shared_record_table == NULL);
                               2221         [ -  + ]:           1322 :     Assert(CurrentSession->shared_typmod_table == NULL);
                               2222                 :                : 
                               2223                 :                :     /*
                               2224                 :                :      * We can't already have typmods in our local cache, because they'd clash
                               2225                 :                :      * with those imported by SharedRecordTypmodRegistryInit.  This should be
                               2226                 :                :      * a freshly started parallel worker.  If we ever support worker
                               2227                 :                :      * recycling, a worker would need to zap its local cache in between
                               2228                 :                :      * servicing different queries, in order to be able to call this and
                               2229                 :                :      * synchronize typmods with a new leader; but that's problematic because
                               2230                 :                :      * we can't be very sure that record-typmod-related state hasn't escaped
                               2231                 :                :      * to anywhere else in the process.
                               2232                 :                :      */
                               2233         [ -  + ]:           1322 :     Assert(NextRecordTypmod == 0);
                               2234                 :                : 
                               2235                 :           1322 :     old_context = MemoryContextSwitchTo(TopMemoryContext);
                               2236                 :                : 
                               2237                 :                :     /* Attach to the two hash tables. */
                               2238                 :           1322 :     record_table = dshash_attach(CurrentSession->area,
                               2239                 :                :                                  &srtr_record_table_params,
                               2240                 :                :                                  registry->record_table_handle,
                               2241                 :           1322 :                                  CurrentSession->area);
                               2242                 :           1322 :     typmod_table = dshash_attach(CurrentSession->area,
                               2243                 :                :                                  &srtr_typmod_table_params,
                               2244                 :                :                                  registry->typmod_table_handle,
                               2245                 :                :                                  NULL);
                               2246                 :                : 
                               2247                 :           1322 :     MemoryContextSwitchTo(old_context);
                               2248                 :                : 
                               2249                 :                :     /*
                               2250                 :                :      * Set up detach hook to run at worker exit.  Currently this is the same
                               2251                 :                :      * as the leader's detach hook, but in future they might need to be
                               2252                 :                :      * different.
                               2253                 :                :      */
                               2254                 :           1322 :     on_dsm_detach(CurrentSession->segment,
                               2255                 :                :                   shared_record_typmod_registry_detach,
                               2256                 :                :                   PointerGetDatum(registry));
                               2257                 :                : 
                               2258                 :                :     /*
                               2259                 :                :      * Set up the session state that will tell assign_record_type_typmod and
                               2260                 :                :      * lookup_rowtype_tupdesc_internal about the shared registry.
                               2261                 :                :      */
                               2262                 :           1322 :     CurrentSession->shared_typmod_registry = registry;
                               2263                 :           1322 :     CurrentSession->shared_record_table = record_table;
                               2264                 :           1322 :     CurrentSession->shared_typmod_table = typmod_table;
 7318 tgl@sss.pgh.pa.us        2265                 :           1322 : }
                               2266                 :                : 
                               2267                 :                : /*
                               2268                 :                :  * TypeCacheRelCallback
                               2269                 :                :  *      Relcache inval callback function
                               2270                 :                :  *
                               2271                 :                :  * Delete the cached tuple descriptor (if any) for the given rel's composite
                               2272                 :                :  * type, or for all composite types if relid == InvalidOid.  Also reset
                               2273                 :                :  * whatever info we have cached about the composite type's comparability.
                               2274                 :                :  *
                               2275                 :                :  * This is called when a relcache invalidation event occurs for the given
                               2276                 :                :  * relid.  We must scan the whole typcache hash since we don't know the
                               2277                 :                :  * type OID corresponding to the relid.  We could do a direct search if this
                               2278                 :                :  * were a syscache-flush callback on pg_type, but then we would need all
                               2279                 :                :  * ALTER-TABLE-like commands that could modify a rowtype to issue syscache
                               2280                 :                :  * invals against the rel's pg_type OID.  The extra SI signaling could very
                               2281                 :                :  * well cost more than we'd save, since in most usages there are not very
                               2282                 :                :  * many entries in a backend's typcache.  The risk of bugs-of-omission seems
                               2283                 :                :  * high, too.
                               2284                 :                :  *
                               2285                 :                :  * Another possibility, with only localized impact, is to maintain a second
                               2286                 :                :  * hashtable that indexes composite-type typcache entries by their typrelid.
                               2287                 :                :  * But it's still not clear it's worth the trouble.
                               2288                 :                :  */
                               2289                 :                : static void
 4973                          2290                 :         882442 : TypeCacheRelCallback(Datum arg, Oid relid)
                               2291                 :                : {
                               2292                 :                :     HASH_SEQ_STATUS status;
                               2293                 :                :     TypeCacheEntry *typentry;
                               2294                 :                : 
                               2295                 :                :     /* TypeCacheHash must exist, else this callback wouldn't be registered */
                               2296                 :         882442 :     hash_seq_init(&status, TypeCacheHash);
                               2297         [ +  + ]:        9376464 :     while ((typentry = (TypeCacheEntry *) hash_seq_search(&status)) != NULL)
                               2298                 :                :     {
 2362                          2299         [ +  + ]:        8494022 :         if (typentry->typtype == TYPTYPE_COMPOSITE)
                               2300                 :                :         {
                               2301                 :                :             /* Skip if no match, unless we're zapping all composite types */
                               2302   [ +  +  +  + ]:        2156088 :             if (relid != typentry->typrelid && relid != InvalidOid)
                               2303                 :        2148506 :                 continue;
                               2304                 :                : 
                               2305                 :                :             /* Delete tupdesc if we have it */
                               2306         [ +  + ]:           7582 :             if (typentry->tupDesc != NULL)
                               2307                 :                :             {
                               2308                 :                :                 /*
                               2309                 :                :                  * Release our refcount, and free the tupdesc if none remain.
                               2310                 :                :                  * (Can't use DecrTupleDescRefCount because this reference is
                               2311                 :                :                  * not logged in current resource owner.)
                               2312                 :                :                  */
                               2313         [ -  + ]:           1452 :                 Assert(typentry->tupDesc->tdrefcount > 0);
                               2314         [ +  + ]:           1452 :                 if (--typentry->tupDesc->tdrefcount == 0)
                               2315                 :           1243 :                     FreeTupleDesc(typentry->tupDesc);
                               2316                 :           1452 :                 typentry->tupDesc = NULL;
                               2317                 :                : 
                               2318                 :                :                 /*
                               2319                 :                :                  * Also clear tupDesc_identifier, so that anything watching
                               2320                 :                :                  * that will realize that the tupdesc has possibly changed.
                               2321                 :                :                  * (Alternatively, we could specify that to detect possible
                               2322                 :                :                  * tupdesc change, one must check for tupDesc != NULL as well
                               2323                 :                :                  * as tupDesc_identifier being the same as what was previously
                               2324                 :                :                  * seen.  That seems error-prone.)
                               2325                 :                :                  */
 1704                          2326                 :           1452 :                 typentry->tupDesc_identifier = 0;
                               2327                 :                :             }
                               2328                 :                : 
                               2329                 :                :             /* Reset equality/comparison/hashing validity information */
 1500                          2330                 :           7582 :             typentry->flags &= ~TCFLAGS_OPERATOR_FLAGS;
                               2331                 :                :         }
 2362                          2332         [ +  + ]:        6337934 :         else if (typentry->typtype == TYPTYPE_DOMAIN)
                               2333                 :                :         {
                               2334                 :                :             /*
                               2335                 :                :              * If it's domain over composite, reset flags.  (We don't bother
                               2336                 :                :              * trying to determine whether the specific base type needs a
                               2337                 :                :              * reset.)  Note that if we haven't determined whether the base
                               2338                 :                :              * type is composite, we don't need to reset anything.
                               2339                 :                :              */
                               2340         [ -  + ]:         574900 :             if (typentry->flags & TCFLAGS_DOMAIN_BASE_IS_COMPOSITE)
 1500 tgl@sss.pgh.pa.us        2341                 :UBC           0 :                 typentry->flags &= ~TCFLAGS_OPERATOR_FLAGS;
                               2342                 :                :         }
                               2343                 :                :     }
 1500 tgl@sss.pgh.pa.us        2344                 :CBC      882442 : }
                               2345                 :                : 
                               2346                 :                : /*
                               2347                 :                :  * TypeCacheTypCallback
                               2348                 :                :  *      Syscache inval callback function
                               2349                 :                :  *
                               2350                 :                :  * This is called when a syscache invalidation event occurs for any
                               2351                 :                :  * pg_type row.  If we have information cached about that type, mark
                               2352                 :                :  * it as needing to be reloaded.
                               2353                 :                :  */
                               2354                 :                : static void
                               2355                 :         332191 : TypeCacheTypCallback(Datum arg, int cacheid, uint32 hashvalue)
                               2356                 :                : {
                               2357                 :                :     HASH_SEQ_STATUS status;
                               2358                 :                :     TypeCacheEntry *typentry;
                               2359                 :                : 
                               2360                 :                :     /* TypeCacheHash must exist, else this callback wouldn't be registered */
                               2361                 :         332191 :     hash_seq_init(&status, TypeCacheHash);
                               2362         [ +  + ]:        3443213 :     while ((typentry = (TypeCacheEntry *) hash_seq_search(&status)) != NULL)
                               2363                 :                :     {
                               2364                 :                :         /* Is this the targeted type row (or it's a total cache flush)? */
                               2365   [ +  +  +  + ]:        3111022 :         if (hashvalue == 0 || typentry->type_id_hash == hashvalue)
                               2366                 :                :         {
                               2367                 :                :             /*
                               2368                 :                :              * Mark the data obtained directly from pg_type as invalid.  Also,
                               2369                 :                :              * if it's a domain, typnotnull might've changed, so we'll need to
                               2370                 :                :              * recalculate its constraints.
                               2371                 :                :              */
                               2372                 :           3113 :             typentry->flags &= ~(TCFLAGS_HAVE_PG_TYPE_DATA |
                               2373                 :                :                                  TCFLAGS_CHECKED_DOMAIN_CONSTRAINTS);
                               2374                 :                :         }
                               2375                 :                :     }
 3425                          2376                 :         332191 : }
                               2377                 :                : 
                               2378                 :                : /*
                               2379                 :                :  * TypeCacheOpcCallback
                               2380                 :                :  *      Syscache inval callback function
                               2381                 :                :  *
                               2382                 :                :  * This is called when a syscache invalidation event occurs for any pg_opclass
                               2383                 :                :  * row.  In principle we could probably just invalidate data dependent on the
                               2384                 :                :  * particular opclass, but since updates on pg_opclass are rare in production
                               2385                 :                :  * it doesn't seem worth a lot of complication: we just mark all cached data
                               2386                 :                :  * invalid.
                               2387                 :                :  *
                               2388                 :                :  * Note that we don't bother watching for updates on pg_amop or pg_amproc.
                               2389                 :                :  * This should be safe because ALTER OPERATOR FAMILY ADD/DROP OPERATOR/FUNCTION
                               2390                 :                :  * is not allowed to be used to add/drop the primary operators and functions
                               2391                 :                :  * of an opclass, only cross-type members of a family; and the latter sorts
                               2392                 :                :  * of members are not going to get cached here.
                               2393                 :                :  */
                               2394                 :                : static void
                               2395                 :            898 : TypeCacheOpcCallback(Datum arg, int cacheid, uint32 hashvalue)
                               2396                 :                : {
                               2397                 :                :     HASH_SEQ_STATUS status;
                               2398                 :                :     TypeCacheEntry *typentry;
                               2399                 :                : 
                               2400                 :                :     /* TypeCacheHash must exist, else this callback wouldn't be registered */
                               2401                 :            898 :     hash_seq_init(&status, TypeCacheHash);
                               2402         [ +  + ]:           5421 :     while ((typentry = (TypeCacheEntry *) hash_seq_search(&status)) != NULL)
                               2403                 :                :     {
                               2404                 :                :         /* Reset equality/comparison/hashing validity information */
 1500                          2405                 :           4523 :         typentry->flags &= ~TCFLAGS_OPERATOR_FLAGS;
                               2406                 :                :     }
 7318                          2407                 :            898 : }
                               2408                 :                : 
                               2409                 :                : /*
                               2410                 :                :  * TypeCacheConstrCallback
                               2411                 :                :  *      Syscache inval callback function
                               2412                 :                :  *
                               2413                 :                :  * This is called when a syscache invalidation event occurs for any
                               2414                 :                :  * pg_constraint row.  We flush information about domain constraints
                               2415                 :                :  * when this happens.
                               2416                 :                :  *
                               2417                 :                :  * It's slightly annoying that we can't tell whether the inval event was for
                               2418                 :                :  * a domain constraint record or not; there's usually more update traffic
                               2419                 :                :  * for table constraints than domain constraints, so we'll do a lot of
                               2420                 :                :  * useless flushes.  Still, this is better than the old no-caching-at-all
                               2421                 :                :  * approach to domain constraints.
                               2422                 :                :  */
                               2423                 :                : static void
 3332                          2424                 :          71269 : TypeCacheConstrCallback(Datum arg, int cacheid, uint32 hashvalue)
                               2425                 :                : {
                               2426                 :                :     TypeCacheEntry *typentry;
                               2427                 :                : 
                               2428                 :                :     /*
                               2429                 :                :      * Because this is called very frequently, and typically very few of the
                               2430                 :                :      * typcache entries are for domains, we don't use hash_seq_search here.
                               2431                 :                :      * Instead we thread all the domain-type entries together so that we can
                               2432                 :                :      * visit them cheaply.
                               2433                 :                :      */
                               2434                 :          71269 :     for (typentry = firstDomainTypeEntry;
                               2435         [ +  + ]:         135593 :          typentry != NULL;
                               2436                 :          64324 :          typentry = typentry->nextDomain)
                               2437                 :                :     {
                               2438                 :                :         /* Reset domain constraint validity information */
                               2439                 :          64324 :         typentry->flags &= ~TCFLAGS_CHECKED_DOMAIN_CONSTRAINTS;
                               2440                 :                :     }
                               2441                 :          71269 : }
                               2442                 :                : 
                               2443                 :                : 
                               2444                 :                : /*
                               2445                 :                :  * Check if given OID is part of the subset that's sortable by comparisons
                               2446                 :                :  */
                               2447                 :                : static inline bool
 4921                          2448                 :         150057 : enum_known_sorted(TypeCacheEnumData *enumdata, Oid arg)
                               2449                 :                : {
                               2450                 :                :     Oid         offset;
                               2451                 :                : 
                               2452         [ -  + ]:         150057 :     if (arg < enumdata->bitmap_base)
 4921 tgl@sss.pgh.pa.us        2453                 :UBC           0 :         return false;
 4921 tgl@sss.pgh.pa.us        2454                 :CBC      150057 :     offset = arg - enumdata->bitmap_base;
                               2455         [ -  + ]:         150057 :     if (offset > (Oid) INT_MAX)
 4921 tgl@sss.pgh.pa.us        2456                 :UBC           0 :         return false;
 4921 tgl@sss.pgh.pa.us        2457                 :CBC      150057 :     return bms_is_member((int) offset, enumdata->sorted_values);
                               2458                 :                : }
                               2459                 :                : 
                               2460                 :                : 
                               2461                 :                : /*
                               2462                 :                :  * compare_values_of_enum
                               2463                 :                :  *      Compare two members of an enum type.
                               2464                 :                :  *      Return <0, 0, or >0 according as arg1 <, =, or > arg2.
                               2465                 :                :  *
                               2466                 :                :  * Note: currently, the enumData cache is refreshed only if we are asked
                               2467                 :                :  * to compare an enum value that is not already in the cache.  This is okay
                               2468                 :                :  * because there is no support for re-ordering existing values, so comparisons
                               2469                 :                :  * of previously cached values will return the right answer even if other
                               2470                 :                :  * values have been added since we last loaded the cache.
                               2471                 :                :  *
                               2472                 :                :  * Note: the enum logic has a special-case rule about even-numbered versus
                               2473                 :                :  * odd-numbered OIDs, but we take no account of that rule here; this
                               2474                 :                :  * routine shouldn't even get called when that rule applies.
                               2475                 :                :  */
                               2476                 :                : int
                               2477                 :          75037 : compare_values_of_enum(TypeCacheEntry *tcache, Oid arg1, Oid arg2)
                               2478                 :                : {
                               2479                 :                :     TypeCacheEnumData *enumdata;
                               2480                 :                :     EnumItem   *item1;
                               2481                 :                :     EnumItem   *item2;
                               2482                 :                : 
                               2483                 :                :     /*
                               2484                 :                :      * Equal OIDs are certainly equal --- this case was probably handled by
                               2485                 :                :      * our caller, but we may as well check.
                               2486                 :                :      */
                               2487         [ -  + ]:          75037 :     if (arg1 == arg2)
 4921 tgl@sss.pgh.pa.us        2488                 :UBC           0 :         return 0;
                               2489                 :                : 
                               2490                 :                :     /* Load up the cache if first time through */
 4921 tgl@sss.pgh.pa.us        2491         [ +  + ]:CBC       75037 :     if (tcache->enumData == NULL)
                               2492                 :              4 :         load_enum_cache_data(tcache);
                               2493                 :          75037 :     enumdata = tcache->enumData;
                               2494                 :                : 
                               2495                 :                :     /*
                               2496                 :                :      * If both OIDs are known-sorted, we can just compare them directly.
                               2497                 :                :      */
                               2498   [ +  +  -  + ]:         150057 :     if (enum_known_sorted(enumdata, arg1) &&
                               2499                 :          75020 :         enum_known_sorted(enumdata, arg2))
                               2500                 :                :     {
 4921 tgl@sss.pgh.pa.us        2501         [ #  # ]:UBC           0 :         if (arg1 < arg2)
                               2502                 :              0 :             return -1;
                               2503                 :                :         else
                               2504                 :              0 :             return 1;
                               2505                 :                :     }
                               2506                 :                : 
                               2507                 :                :     /*
                               2508                 :                :      * Slow path: we have to identify their actual sort-order positions.
                               2509                 :                :      */
 4921 tgl@sss.pgh.pa.us        2510                 :CBC       75037 :     item1 = find_enumitem(enumdata, arg1);
                               2511                 :          75037 :     item2 = find_enumitem(enumdata, arg2);
                               2512                 :                : 
                               2513   [ +  -  -  + ]:          75037 :     if (item1 == NULL || item2 == NULL)
                               2514                 :                :     {
                               2515                 :                :         /*
                               2516                 :                :          * We couldn't find one or both values.  That means the enum has
                               2517                 :                :          * changed under us, so re-initialize the cache and try again. We
                               2518                 :                :          * don't bother retrying the known-sorted case in this path.
                               2519                 :                :          */
 4921 tgl@sss.pgh.pa.us        2520                 :UBC           0 :         load_enum_cache_data(tcache);
                               2521                 :              0 :         enumdata = tcache->enumData;
                               2522                 :                : 
                               2523                 :              0 :         item1 = find_enumitem(enumdata, arg1);
                               2524                 :              0 :         item2 = find_enumitem(enumdata, arg2);
                               2525                 :                : 
                               2526                 :                :         /*
                               2527                 :                :          * If we still can't find the values, complain: we must have corrupt
                               2528                 :                :          * data.
                               2529                 :                :          */
                               2530         [ #  # ]:              0 :         if (item1 == NULL)
                               2531         [ #  # ]:              0 :             elog(ERROR, "enum value %u not found in cache for enum %s",
                               2532                 :                :                  arg1, format_type_be(tcache->type_id));
                               2533         [ #  # ]:              0 :         if (item2 == NULL)
                               2534         [ #  # ]:              0 :             elog(ERROR, "enum value %u not found in cache for enum %s",
                               2535                 :                :                  arg2, format_type_be(tcache->type_id));
                               2536                 :                :     }
                               2537                 :                : 
 4921 tgl@sss.pgh.pa.us        2538         [ +  + ]:CBC       75037 :     if (item1->sort_order < item2->sort_order)
                               2539                 :          25012 :         return -1;
                               2540         [ +  - ]:          50025 :     else if (item1->sort_order > item2->sort_order)
                               2541                 :          50025 :         return 1;
                               2542                 :                :     else
 4921 tgl@sss.pgh.pa.us        2543                 :UBC           0 :         return 0;
                               2544                 :                : }
                               2545                 :                : 
                               2546                 :                : /*
                               2547                 :                :  * Load (or re-load) the enumData member of the typcache entry.
                               2548                 :                :  */
                               2549                 :                : static void
 4921 tgl@sss.pgh.pa.us        2550                 :CBC           4 : load_enum_cache_data(TypeCacheEntry *tcache)
                               2551                 :                : {
                               2552                 :                :     TypeCacheEnumData *enumdata;
                               2553                 :                :     Relation    enum_rel;
                               2554                 :                :     SysScanDesc enum_scan;
                               2555                 :                :     HeapTuple   enum_tuple;
                               2556                 :                :     ScanKeyData skey;
                               2557                 :                :     EnumItem   *items;
                               2558                 :                :     int         numitems;
                               2559                 :                :     int         maxitems;
                               2560                 :                :     Oid         bitmap_base;
                               2561                 :                :     Bitmapset  *bitmap;
                               2562                 :                :     MemoryContext oldcxt;
                               2563                 :                :     int         bm_size,
                               2564                 :                :                 start_pos;
                               2565                 :                : 
                               2566                 :                :     /* Check that this is actually an enum */
                               2567         [ -  + ]:              4 :     if (tcache->typtype != TYPTYPE_ENUM)
 4921 tgl@sss.pgh.pa.us        2568         [ #  # ]:UBC           0 :         ereport(ERROR,
                               2569                 :                :                 (errcode(ERRCODE_WRONG_OBJECT_TYPE),
                               2570                 :                :                  errmsg("%s is not an enum",
                               2571                 :                :                         format_type_be(tcache->type_id))));
                               2572                 :                : 
                               2573                 :                :     /*
                               2574                 :                :      * Read all the information for members of the enum type.  We collect the
                               2575                 :                :      * info in working memory in the caller's context, and then transfer it to
                               2576                 :                :      * permanent memory in CacheMemoryContext.  This minimizes the risk of
                               2577                 :                :      * leaking memory from CacheMemoryContext in the event of an error partway
                               2578                 :                :      * through.
                               2579                 :                :      */
 4921 tgl@sss.pgh.pa.us        2580                 :CBC           4 :     maxitems = 64;
                               2581                 :              4 :     items = (EnumItem *) palloc(sizeof(EnumItem) * maxitems);
                               2582                 :              4 :     numitems = 0;
                               2583                 :                : 
                               2584                 :                :     /* Scan pg_enum for the members of the target enum type. */
                               2585                 :              4 :     ScanKeyInit(&skey,
                               2586                 :                :                 Anum_pg_enum_enumtypid,
                               2587                 :                :                 BTEqualStrategyNumber, F_OIDEQ,
                               2588                 :                :                 ObjectIdGetDatum(tcache->type_id));
                               2589                 :                : 
 1910 andres@anarazel.de       2590                 :              4 :     enum_rel = table_open(EnumRelationId, AccessShareLock);
 4921 tgl@sss.pgh.pa.us        2591                 :              4 :     enum_scan = systable_beginscan(enum_rel,
                               2592                 :                :                                    EnumTypIdLabelIndexId,
                               2593                 :                :                                    true, NULL,
                               2594                 :                :                                    1, &skey);
                               2595                 :                : 
                               2596         [ +  + ]:             32 :     while (HeapTupleIsValid(enum_tuple = systable_getnext(enum_scan)))
                               2597                 :                :     {
                               2598                 :             28 :         Form_pg_enum en = (Form_pg_enum) GETSTRUCT(enum_tuple);
                               2599                 :                : 
                               2600         [ -  + ]:             28 :         if (numitems >= maxitems)
                               2601                 :                :         {
 4921 tgl@sss.pgh.pa.us        2602                 :UBC           0 :             maxitems *= 2;
                               2603                 :              0 :             items = (EnumItem *) repalloc(items, sizeof(EnumItem) * maxitems);
                               2604                 :                :         }
 1972 andres@anarazel.de       2605                 :CBC          28 :         items[numitems].enum_oid = en->oid;
 4921 tgl@sss.pgh.pa.us        2606                 :             28 :         items[numitems].sort_order = en->enumsortorder;
                               2607                 :             28 :         numitems++;
                               2608                 :                :     }
                               2609                 :                : 
                               2610                 :              4 :     systable_endscan(enum_scan);
 1910 andres@anarazel.de       2611                 :              4 :     table_close(enum_rel, AccessShareLock);
                               2612                 :                : 
                               2613                 :                :     /* Sort the items into OID order */
 4921 tgl@sss.pgh.pa.us        2614                 :              4 :     qsort(items, numitems, sizeof(EnumItem), enum_oid_cmp);
                               2615                 :                : 
                               2616                 :                :     /*
                               2617                 :                :      * Here, we create a bitmap listing a subset of the enum's OIDs that are
                               2618                 :                :      * known to be in order and can thus be compared with just OID comparison.
                               2619                 :                :      *
                               2620                 :                :      * The point of this is that the enum's initial OIDs were certainly in
                               2621                 :                :      * order, so there is some subset that can be compared via OID comparison;
                               2622                 :                :      * and we'd rather not do binary searches unnecessarily.
                               2623                 :                :      *
                               2624                 :                :      * This is somewhat heuristic, and might identify a subset of OIDs that
                               2625                 :                :      * isn't exactly what the type started with.  That's okay as long as the
                               2626                 :                :      * subset is correctly sorted.
                               2627                 :                :      */
                               2628                 :              4 :     bitmap_base = InvalidOid;
                               2629                 :              4 :     bitmap = NULL;
                               2630                 :              4 :     bm_size = 1;                /* only save sets of at least 2 OIDs */
                               2631                 :                : 
                               2632         [ +  - ]:             10 :     for (start_pos = 0; start_pos < numitems - 1; start_pos++)
                               2633                 :                :     {
                               2634                 :                :         /*
                               2635                 :                :          * Identify longest sorted subsequence starting at start_pos
                               2636                 :                :          */
 4753 bruce@momjian.us         2637                 :             10 :         Bitmapset  *this_bitmap = bms_make_singleton(0);
                               2638                 :             10 :         int         this_bm_size = 1;
                               2639                 :             10 :         Oid         start_oid = items[start_pos].enum_oid;
                               2640                 :             10 :         float4      prev_order = items[start_pos].sort_order;
                               2641                 :                :         int         i;
                               2642                 :                : 
 4921 tgl@sss.pgh.pa.us        2643         [ +  + ]:             67 :         for (i = start_pos + 1; i < numitems; i++)
                               2644                 :                :         {
                               2645                 :                :             Oid         offset;
                               2646                 :                : 
                               2647                 :             57 :             offset = items[i].enum_oid - start_oid;
                               2648                 :                :             /* quit if bitmap would be too large; cutoff is arbitrary */
                               2649         [ -  + ]:             57 :             if (offset >= 8192)
 4921 tgl@sss.pgh.pa.us        2650                 :UBC           0 :                 break;
                               2651                 :                :             /* include the item if it's in-order */
 4921 tgl@sss.pgh.pa.us        2652         [ +  + ]:CBC          57 :             if (items[i].sort_order > prev_order)
                               2653                 :                :             {
                               2654                 :             29 :                 prev_order = items[i].sort_order;
                               2655                 :             29 :                 this_bitmap = bms_add_member(this_bitmap, (int) offset);
                               2656                 :             29 :                 this_bm_size++;
                               2657                 :                :             }
                               2658                 :                :         }
                               2659                 :                : 
                               2660                 :                :         /* Remember it if larger than previous best */
                               2661         [ +  + ]:             10 :         if (this_bm_size > bm_size)
                               2662                 :                :         {
                               2663                 :              4 :             bms_free(bitmap);
                               2664                 :              4 :             bitmap_base = start_oid;
                               2665                 :              4 :             bitmap = this_bitmap;
                               2666                 :              4 :             bm_size = this_bm_size;
                               2667                 :                :         }
                               2668                 :                :         else
                               2669                 :              6 :             bms_free(this_bitmap);
                               2670                 :                : 
                               2671                 :                :         /*
                               2672                 :                :          * Done if it's not possible to find a longer sequence in the rest of
                               2673                 :                :          * the list.  In typical cases this will happen on the first
                               2674                 :                :          * iteration, which is why we create the bitmaps on the fly instead of
                               2675                 :                :          * doing a second pass over the list.
                               2676                 :                :          */
                               2677         [ +  + ]:             10 :         if (bm_size >= (numitems - start_pos - 1))
                               2678                 :              4 :             break;
                               2679                 :                :     }
                               2680                 :                : 
                               2681                 :                :     /* OK, copy the data into CacheMemoryContext */
                               2682                 :              4 :     oldcxt = MemoryContextSwitchTo(CacheMemoryContext);
                               2683                 :                :     enumdata = (TypeCacheEnumData *)
                               2684                 :              4 :         palloc(offsetof(TypeCacheEnumData, enum_values) +
                               2685                 :              4 :                numitems * sizeof(EnumItem));
                               2686                 :              4 :     enumdata->bitmap_base = bitmap_base;
                               2687                 :              4 :     enumdata->sorted_values = bms_copy(bitmap);
                               2688                 :              4 :     enumdata->num_values = numitems;
                               2689                 :              4 :     memcpy(enumdata->enum_values, items, numitems * sizeof(EnumItem));
                               2690                 :              4 :     MemoryContextSwitchTo(oldcxt);
                               2691                 :                : 
                               2692                 :              4 :     pfree(items);
                               2693                 :              4 :     bms_free(bitmap);
                               2694                 :                : 
                               2695                 :                :     /* And link the finished cache struct into the typcache */
                               2696         [ -  + ]:              4 :     if (tcache->enumData != NULL)
 4921 tgl@sss.pgh.pa.us        2697                 :UBC           0 :         pfree(tcache->enumData);
 4921 tgl@sss.pgh.pa.us        2698                 :CBC           4 :     tcache->enumData = enumdata;
                               2699                 :              4 : }
                               2700                 :                : 
                               2701                 :                : /*
                               2702                 :                :  * Locate the EnumItem with the given OID, if present
                               2703                 :                :  */
                               2704                 :                : static EnumItem *
                               2705                 :         150074 : find_enumitem(TypeCacheEnumData *enumdata, Oid arg)
                               2706                 :                : {
                               2707                 :                :     EnumItem    srch;
                               2708                 :                : 
                               2709                 :                :     /* On some versions of Solaris, bsearch of zero items dumps core */
                               2710         [ -  + ]:         150074 :     if (enumdata->num_values <= 0)
 4921 tgl@sss.pgh.pa.us        2711                 :UBC           0 :         return NULL;
                               2712                 :                : 
 4921 tgl@sss.pgh.pa.us        2713                 :CBC      150074 :     srch.enum_oid = arg;
                               2714                 :         150074 :     return bsearch(&srch, enumdata->enum_values, enumdata->num_values,
                               2715                 :                :                    sizeof(EnumItem), enum_oid_cmp);
                               2716                 :                : }
                               2717                 :                : 
                               2718                 :                : /*
                               2719                 :                :  * qsort comparison function for OID-ordered EnumItems
                               2720                 :                :  */
                               2721                 :                : static int
                               2722                 :         300259 : enum_oid_cmp(const void *left, const void *right)
                               2723                 :                : {
                               2724                 :         300259 :     const EnumItem *l = (const EnumItem *) left;
                               2725                 :         300259 :     const EnumItem *r = (const EnumItem *) right;
                               2726                 :                : 
   58 nathan@postgresql.or     2727                 :GNC      300259 :     return pg_cmp_u32(l->enum_oid, r->enum_oid);
                               2728                 :                : }
                               2729                 :                : 
                               2730                 :                : /*
                               2731                 :                :  * Copy 'tupdesc' into newly allocated shared memory in 'area', set its typmod
                               2732                 :                :  * to the given value and return a dsa_pointer.
                               2733                 :                :  */
                               2734                 :                : static dsa_pointer
 2404 andres@anarazel.de       2735                 :CBC          77 : share_tupledesc(dsa_area *area, TupleDesc tupdesc, uint32 typmod)
                               2736                 :                : {
                               2737                 :                :     dsa_pointer shared_dp;
                               2738                 :                :     TupleDesc   shared;
                               2739                 :                : 
                               2740                 :             77 :     shared_dp = dsa_allocate(area, TupleDescSize(tupdesc));
                               2741                 :             77 :     shared = (TupleDesc) dsa_get_address(area, shared_dp);
                               2742                 :             77 :     TupleDescCopy(shared, tupdesc);
                               2743                 :             77 :     shared->tdtypmod = typmod;
                               2744                 :                : 
                               2745                 :             77 :     return shared_dp;
                               2746                 :                : }
                               2747                 :                : 
                               2748                 :                : /*
                               2749                 :                :  * If we are attached to a SharedRecordTypmodRegistry, use it to find or
                               2750                 :                :  * create a shared TupleDesc that matches 'tupdesc'.  Otherwise return NULL.
                               2751                 :                :  * Tuple descriptors returned by this function are not reference counted, and
                               2752                 :                :  * will exist at least as long as the current backend remained attached to the
                               2753                 :                :  * current session.
                               2754                 :                :  */
                               2755                 :                : static TupleDesc
                               2756                 :           7007 : find_or_make_matching_shared_tupledesc(TupleDesc tupdesc)
                               2757                 :                : {
                               2758                 :                :     TupleDesc   result;
                               2759                 :                :     SharedRecordTableKey key;
                               2760                 :                :     SharedRecordTableEntry *record_table_entry;
                               2761                 :                :     SharedTypmodTableEntry *typmod_table_entry;
                               2762                 :                :     dsa_pointer shared_dp;
                               2763                 :                :     bool        found;
                               2764                 :                :     uint32      typmod;
                               2765                 :                : 
                               2766                 :                :     /* If not even attached, nothing to do. */
                               2767         [ +  + ]:           7007 :     if (CurrentSession->shared_typmod_registry == NULL)
                               2768                 :           6974 :         return NULL;
                               2769                 :                : 
                               2770                 :                :     /* Try to find a matching tuple descriptor in the record table. */
                               2771                 :             33 :     key.shared = false;
 2403 tgl@sss.pgh.pa.us        2772                 :             33 :     key.u.local_tupdesc = tupdesc;
                               2773                 :                :     record_table_entry = (SharedRecordTableEntry *)
 2404 andres@anarazel.de       2774                 :             33 :         dshash_find(CurrentSession->shared_record_table, &key, false);
                               2775         [ +  + ]:             33 :     if (record_table_entry)
                               2776                 :                :     {
                               2777         [ -  + ]:              3 :         Assert(record_table_entry->key.shared);
                               2778                 :              3 :         dshash_release_lock(CurrentSession->shared_record_table,
                               2779                 :                :                             record_table_entry);
                               2780                 :                :         result = (TupleDesc)
                               2781                 :              3 :             dsa_get_address(CurrentSession->area,
                               2782                 :                :                             record_table_entry->key.u.shared_tupdesc);
                               2783         [ -  + ]:              3 :         Assert(result->tdrefcount == -1);
                               2784                 :                : 
                               2785                 :              3 :         return result;
                               2786                 :                :     }
                               2787                 :                : 
                               2788                 :                :     /* Allocate a new typmod number.  This will be wasted if we error out. */
                               2789                 :             30 :     typmod = (int)
                               2790                 :             30 :         pg_atomic_fetch_add_u32(&CurrentSession->shared_typmod_registry->next_typmod,
                               2791                 :                :                                 1);
                               2792                 :                : 
                               2793                 :                :     /* Copy the TupleDesc into shared memory. */
                               2794                 :             30 :     shared_dp = share_tupledesc(CurrentSession->area, tupdesc, typmod);
                               2795                 :                : 
                               2796                 :                :     /*
                               2797                 :                :      * Create an entry in the typmod table so that others will understand this
                               2798                 :                :      * typmod number.
                               2799                 :                :      */
                               2800         [ +  - ]:             30 :     PG_TRY();
                               2801                 :                :     {
                               2802                 :                :         typmod_table_entry = (SharedTypmodTableEntry *)
                               2803                 :             30 :             dshash_find_or_insert(CurrentSession->shared_typmod_table,
                               2804                 :                :                                   &typmod, &found);
                               2805         [ -  + ]:             30 :         if (found)
 2404 andres@anarazel.de       2806         [ #  # ]:UBC           0 :             elog(ERROR, "cannot create duplicate shared record typmod");
                               2807                 :                :     }
                               2808                 :              0 :     PG_CATCH();
                               2809                 :                :     {
                               2810                 :              0 :         dsa_free(CurrentSession->area, shared_dp);
                               2811                 :              0 :         PG_RE_THROW();
                               2812                 :                :     }
 2404 andres@anarazel.de       2813         [ -  + ]:CBC          30 :     PG_END_TRY();
                               2814                 :             30 :     typmod_table_entry->typmod = typmod;
                               2815                 :             30 :     typmod_table_entry->shared_tupdesc = shared_dp;
                               2816                 :             30 :     dshash_release_lock(CurrentSession->shared_typmod_table,
                               2817                 :                :                         typmod_table_entry);
                               2818                 :                : 
                               2819                 :                :     /*
                               2820                 :                :      * Finally create an entry in the record table so others with matching
                               2821                 :                :      * tuple descriptors can reuse the typmod.
                               2822                 :                :      */
                               2823                 :                :     record_table_entry = (SharedRecordTableEntry *)
                               2824                 :             30 :         dshash_find_or_insert(CurrentSession->shared_record_table, &key,
                               2825                 :                :                               &found);
                               2826         [ -  + ]:             30 :     if (found)
                               2827                 :                :     {
                               2828                 :                :         /*
                               2829                 :                :          * Someone concurrently inserted a matching tuple descriptor since the
                               2830                 :                :          * first time we checked.  Use that one instead.
                               2831                 :                :          */
 2404 andres@anarazel.de       2832                 :UBC           0 :         dshash_release_lock(CurrentSession->shared_record_table,
                               2833                 :                :                             record_table_entry);
                               2834                 :                : 
                               2835                 :                :         /* Might as well free up the space used by the one we created. */
                               2836                 :              0 :         found = dshash_delete_key(CurrentSession->shared_typmod_table,
                               2837                 :                :                                   &typmod);
                               2838         [ #  # ]:              0 :         Assert(found);
                               2839                 :              0 :         dsa_free(CurrentSession->area, shared_dp);
                               2840                 :                : 
                               2841                 :                :         /* Return the one we found. */
                               2842         [ #  # ]:              0 :         Assert(record_table_entry->key.shared);
                               2843                 :                :         result = (TupleDesc)
                               2844                 :              0 :             dsa_get_address(CurrentSession->area,
                               2845                 :                :                             record_table_entry->key.u.shared_tupdesc);
                               2846         [ #  # ]:              0 :         Assert(result->tdrefcount == -1);
                               2847                 :                : 
                               2848                 :              0 :         return result;
                               2849                 :                :     }
                               2850                 :                : 
                               2851                 :                :     /* Store it and return it. */
 2404 andres@anarazel.de       2852                 :CBC          30 :     record_table_entry->key.shared = true;
 2403 tgl@sss.pgh.pa.us        2853                 :             30 :     record_table_entry->key.u.shared_tupdesc = shared_dp;
 2404 andres@anarazel.de       2854                 :             30 :     dshash_release_lock(CurrentSession->shared_record_table,
                               2855                 :                :                         record_table_entry);
                               2856                 :                :     result = (TupleDesc)
                               2857                 :             30 :         dsa_get_address(CurrentSession->area, shared_dp);
                               2858         [ -  + ]:             30 :     Assert(result->tdrefcount == -1);
                               2859                 :                : 
                               2860                 :             30 :     return result;
                               2861                 :                : }
                               2862                 :                : 
                               2863                 :                : /*
                               2864                 :                :  * On-DSM-detach hook to forget about the current shared record typmod
                               2865                 :                :  * infrastructure.  This is currently used by both leader and workers.
                               2866                 :                :  */
                               2867                 :                : static void
                               2868                 :           1381 : shared_record_typmod_registry_detach(dsm_segment *segment, Datum datum)
                               2869                 :                : {
                               2870                 :                :     /* Be cautious here: maybe we didn't finish initializing. */
                               2871         [ +  - ]:           1381 :     if (CurrentSession->shared_record_table != NULL)
                               2872                 :                :     {
                               2873                 :           1381 :         dshash_detach(CurrentSession->shared_record_table);
                               2874                 :           1381 :         CurrentSession->shared_record_table = NULL;
                               2875                 :                :     }
                               2876         [ +  - ]:           1381 :     if (CurrentSession->shared_typmod_table != NULL)
                               2877                 :                :     {
                               2878                 :           1381 :         dshash_detach(CurrentSession->shared_typmod_table);
                               2879                 :           1381 :         CurrentSession->shared_typmod_table = NULL;
                               2880                 :                :     }
                               2881                 :           1381 :     CurrentSession->shared_typmod_registry = NULL;
                               2882                 :           1381 : }
        

Generated by: LCOV version 2.1-beta2-3-g6141622