LCOV - differential code coverage report
Current view: top level - src/backend/catalog - pg_class.c (source / functions) Coverage Total Hit UBC CBC
Current: Differential Code Coverage 16@8cea358b128 vs 17@8cea358b128 Lines: 91.7 % 24 22 2 22
Current Date: 2024-04-14 14:21:10 Functions: 100.0 % 1 1 1
Baseline: 16@8cea358b128 Branches: 76.9 % 13 10 3 10
Baseline Date: 2024-04-14 14:21:09 Line coverage date bins:
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed (240..) days: 91.7 % 24 22 2 22
Function coverage date bins:
(240..) days: 100.0 % 1 1 1
Branch coverage date bins:
(240..) days: 76.9 % 13 10 3 10

 Age         Owner                    Branch data    TLA  Line data    Source code
                                  1                 :                : /*-------------------------------------------------------------------------
                                  2                 :                :  *
                                  3                 :                :  * pg_class.c
                                  4                 :                :  *    routines to support manipulation of the pg_class 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_class.c
                                 12                 :                :  *
                                 13                 :                :  *-------------------------------------------------------------------------
                                 14                 :                :  */
                                 15                 :                : #include "postgres.h"
                                 16                 :                : 
                                 17                 :                : #include "catalog/pg_class.h"
                                 18                 :                : 
                                 19                 :                : /*
                                 20                 :                :  * Issue an errdetail() informing that the relkind is not supported for this
                                 21                 :                :  * operation.
                                 22                 :                :  */
                                 23                 :                : int
 1011 peter@eisentraut.org       24                 :CBC         114 : errdetail_relkind_not_supported(char relkind)
                                 25                 :                : {
                                 26   [ +  +  +  +  :            114 :     switch (relkind)
                                     +  +  +  +  +  
                                              +  - ]
                                 27                 :                :     {
                                 28                 :              9 :         case RELKIND_RELATION:
                                 29                 :              9 :             return errdetail("This operation is not supported for tables.");
                                 30                 :             18 :         case RELKIND_INDEX:
                                 31                 :             18 :             return errdetail("This operation is not supported for indexes.");
                                 32                 :             11 :         case RELKIND_SEQUENCE:
                                 33                 :             11 :             return errdetail("This operation is not supported for sequences.");
                                 34                 :              3 :         case RELKIND_TOASTVALUE:
                                 35                 :              3 :             return errdetail("This operation is not supported for TOAST tables.");
                                 36                 :             29 :         case RELKIND_VIEW:
                                 37                 :             29 :             return errdetail("This operation is not supported for views.");
                                 38                 :              3 :         case RELKIND_MATVIEW:
                                 39                 :              3 :             return errdetail("This operation is not supported for materialized views.");
                                 40                 :              3 :         case RELKIND_COMPOSITE_TYPE:
                                 41                 :              3 :             return errdetail("This operation is not supported for composite types.");
                                 42                 :             17 :         case RELKIND_FOREIGN_TABLE:
                                 43                 :             17 :             return errdetail("This operation is not supported for foreign tables.");
                                 44                 :             13 :         case RELKIND_PARTITIONED_TABLE:
                                 45                 :             13 :             return errdetail("This operation is not supported for partitioned tables.");
                                 46                 :              8 :         case RELKIND_PARTITIONED_INDEX:
                                 47                 :              8 :             return errdetail("This operation is not supported for partitioned indexes.");
 1011 peter@eisentraut.org       48                 :UBC           0 :         default:
                                 49         [ #  # ]:              0 :             elog(ERROR, "unrecognized relkind: '%c'", relkind);
                                 50                 :                :             return 0;
                                 51                 :                :     }
                                 52                 :                : }
        

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