LCOV - code coverage report
Current view: top level - src/backend/catalog - pg_range.c (source / functions) Hit Total Coverage
Test: PostgreSQL 17devel Lines: 43 45 95.6 %
Date: 2024-04-27 02:11:35 Functions: 2 2 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /*-------------------------------------------------------------------------
       2             :  *
       3             :  * pg_range.c
       4             :  *    routines to support manipulation of the pg_range relation
       5             :  *
       6             :  * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
       7             :  * Portions Copyright (c) 1994, Regents of the University of California
       8             :  *
       9             :  *
      10             :  * IDENTIFICATION
      11             :  *    src/backend/catalog/pg_range.c
      12             :  *
      13             :  *-------------------------------------------------------------------------
      14             :  */
      15             : #include "postgres.h"
      16             : 
      17             : #include "access/genam.h"
      18             : #include "access/htup_details.h"
      19             : #include "access/table.h"
      20             : #include "catalog/dependency.h"
      21             : #include "catalog/indexing.h"
      22             : #include "catalog/pg_collation.h"
      23             : #include "catalog/pg_opclass.h"
      24             : #include "catalog/pg_proc.h"
      25             : #include "catalog/pg_range.h"
      26             : #include "catalog/pg_type.h"
      27             : #include "utils/fmgroids.h"
      28             : #include "utils/rel.h"
      29             : 
      30             : 
      31             : /*
      32             :  * RangeCreate
      33             :  *      Create an entry in pg_range.
      34             :  */
      35             : void
      36         142 : RangeCreate(Oid rangeTypeOid, Oid rangeSubType, Oid rangeCollation,
      37             :             Oid rangeSubOpclass, RegProcedure rangeCanonical,
      38             :             RegProcedure rangeSubDiff, Oid multirangeTypeOid)
      39             : {
      40             :     Relation    pg_range;
      41             :     Datum       values[Natts_pg_range];
      42             :     bool        nulls[Natts_pg_range];
      43             :     HeapTuple   tup;
      44             :     ObjectAddress myself;
      45             :     ObjectAddress referenced;
      46             :     ObjectAddress referencing;
      47             :     ObjectAddresses *addrs;
      48             : 
      49         142 :     pg_range = table_open(RangeRelationId, RowExclusiveLock);
      50             : 
      51         142 :     memset(nulls, 0, sizeof(nulls));
      52             : 
      53         142 :     values[Anum_pg_range_rngtypid - 1] = ObjectIdGetDatum(rangeTypeOid);
      54         142 :     values[Anum_pg_range_rngsubtype - 1] = ObjectIdGetDatum(rangeSubType);
      55         142 :     values[Anum_pg_range_rngcollation - 1] = ObjectIdGetDatum(rangeCollation);
      56         142 :     values[Anum_pg_range_rngsubopc - 1] = ObjectIdGetDatum(rangeSubOpclass);
      57         142 :     values[Anum_pg_range_rngcanonical - 1] = ObjectIdGetDatum(rangeCanonical);
      58         142 :     values[Anum_pg_range_rngsubdiff - 1] = ObjectIdGetDatum(rangeSubDiff);
      59         142 :     values[Anum_pg_range_rngmultitypid - 1] = ObjectIdGetDatum(multirangeTypeOid);
      60             : 
      61         142 :     tup = heap_form_tuple(RelationGetDescr(pg_range), values, nulls);
      62             : 
      63         142 :     CatalogTupleInsert(pg_range, tup);
      64         142 :     heap_freetuple(tup);
      65             : 
      66             :     /* record type's dependencies on range-related items */
      67         142 :     addrs = new_object_addresses();
      68             : 
      69         142 :     ObjectAddressSet(myself, TypeRelationId, rangeTypeOid);
      70             : 
      71         142 :     ObjectAddressSet(referenced, TypeRelationId, rangeSubType);
      72         142 :     add_exact_object_address(&referenced, addrs);
      73             : 
      74         142 :     ObjectAddressSet(referenced, OperatorClassRelationId, rangeSubOpclass);
      75         142 :     add_exact_object_address(&referenced, addrs);
      76             : 
      77         142 :     if (OidIsValid(rangeCollation))
      78             :     {
      79          70 :         ObjectAddressSet(referenced, CollationRelationId, rangeCollation);
      80          70 :         add_exact_object_address(&referenced, addrs);
      81             :     }
      82             : 
      83         142 :     if (OidIsValid(rangeCanonical))
      84             :     {
      85           0 :         ObjectAddressSet(referenced, ProcedureRelationId, rangeCanonical);
      86           0 :         add_exact_object_address(&referenced, addrs);
      87             :     }
      88             : 
      89         142 :     if (OidIsValid(rangeSubDiff))
      90             :     {
      91           8 :         ObjectAddressSet(referenced, ProcedureRelationId, rangeSubDiff);
      92           8 :         add_exact_object_address(&referenced, addrs);
      93             :     }
      94             : 
      95         142 :     record_object_address_dependencies(&myself, addrs, DEPENDENCY_NORMAL);
      96         142 :     free_object_addresses(addrs);
      97             : 
      98             :     /* record multirange type's dependency on the range type */
      99         142 :     referencing.classId = TypeRelationId;
     100         142 :     referencing.objectId = multirangeTypeOid;
     101         142 :     referencing.objectSubId = 0;
     102         142 :     recordDependencyOn(&referencing, &myself, DEPENDENCY_INTERNAL);
     103             : 
     104         142 :     table_close(pg_range, RowExclusiveLock);
     105         142 : }
     106             : 
     107             : 
     108             : /*
     109             :  * RangeDelete
     110             :  *      Remove the pg_range entry for the specified type.
     111             :  */
     112             : void
     113         104 : RangeDelete(Oid rangeTypeOid)
     114             : {
     115             :     Relation    pg_range;
     116             :     ScanKeyData key[1];
     117             :     SysScanDesc scan;
     118             :     HeapTuple   tup;
     119             : 
     120         104 :     pg_range = table_open(RangeRelationId, RowExclusiveLock);
     121             : 
     122         104 :     ScanKeyInit(&key[0],
     123             :                 Anum_pg_range_rngtypid,
     124             :                 BTEqualStrategyNumber, F_OIDEQ,
     125             :                 ObjectIdGetDatum(rangeTypeOid));
     126             : 
     127         104 :     scan = systable_beginscan(pg_range, RangeTypidIndexId, true,
     128             :                               NULL, 1, key);
     129             : 
     130         208 :     while (HeapTupleIsValid(tup = systable_getnext(scan)))
     131             :     {
     132         104 :         CatalogTupleDelete(pg_range, &tup->t_self);
     133             :     }
     134             : 
     135         104 :     systable_endscan(scan);
     136             : 
     137         104 :     table_close(pg_range, RowExclusiveLock);
     138         104 : }

Generated by: LCOV version 1.14