LCOV - differential code coverage report
Current view: top level - src/backend/access/rmgrdesc - smgrdesc.c (source / functions) Coverage Total Hit UBC GBC CBC
Current: Differential Code Coverage 16@8cea358b128 vs 17@8cea358b128 Lines: 100.0 % 24 24 8 16
Current Date: 2024-04-14 14:21:10 Functions: 100.0 % 2 2 2
Baseline: 16@8cea358b128 Branches: 71.4 % 7 5 2 3 2
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: 100.0 % 24 24 8 16
Function coverage date bins:
(240..) days: 100.0 % 2 2 2
Branch coverage date bins:
(240..) days: 71.4 % 7 5 2 3 2

 Age         Owner                    Branch data    TLA  Line data    Source code
                                  1                 :                : /*-------------------------------------------------------------------------
                                  2                 :                :  *
                                  3                 :                :  * smgrdesc.c
                                  4                 :                :  *    rmgr descriptor routines for catalog/storage.c
                                  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/access/rmgrdesc/smgrdesc.c
                                 12                 :                :  *
                                 13                 :                :  *-------------------------------------------------------------------------
                                 14                 :                :  */
                                 15                 :                : #include "postgres.h"
                                 16                 :                : 
                                 17                 :                : #include "catalog/storage_xlog.h"
                                 18                 :                : 
                                 19                 :                : 
                                 20                 :                : void
 3433 heikki.linnakangas@i       21                 :CBC        1994 : smgr_desc(StringInfo buf, XLogReaderState *record)
                                 22                 :                : {
 3592                            23                 :           1994 :     char       *rec = XLogRecGetData(record);
 3433                            24                 :           1994 :     uint8       info = XLogRecGetInfo(record) & ~XLR_INFO_MASK;
                                 25                 :                : 
 4155 alvherre@alvh.no-ip.       26         [ +  + ]:           1994 :     if (info == XLOG_SMGR_CREATE)
                                 27                 :                :     {
                                 28                 :           1988 :         xl_smgr_create *xlrec = (xl_smgr_create *) rec;
  648 rhaas@postgresql.org       29                 :           1988 :         char       *path = relpathperm(xlrec->rlocator, xlrec->forkNum);
                                 30                 :                : 
 3261 peter_e@gmx.net            31                 :           1988 :         appendStringInfoString(buf, path);
 4155 alvherre@alvh.no-ip.       32                 :           1988 :         pfree(path);
                                 33                 :                :     }
 4155 alvherre@alvh.no-ip.       34         [ +  - ]:GBC           6 :     else if (info == XLOG_SMGR_TRUNCATE)
                                 35                 :                :     {
                                 36                 :              6 :         xl_smgr_truncate *xlrec = (xl_smgr_truncate *) rec;
  648 rhaas@postgresql.org       37                 :              6 :         char       *path = relpathperm(xlrec->rlocator, MAIN_FORKNUM);
                                 38                 :                : 
 2858                            39                 :              6 :         appendStringInfo(buf, "%s to %u blocks flags %d", path,
                                 40                 :                :                          xlrec->blkno, xlrec->flags);
 4155 alvherre@alvh.no-ip.       41                 :              6 :         pfree(path);
                                 42                 :                :     }
 3495 andres@anarazel.de         43                 :CBC        1994 : }
                                 44                 :                : 
                                 45                 :                : const char *
                                 46                 :           1996 : smgr_identify(uint8 info)
                                 47                 :                : {
                                 48                 :           1996 :     const char *id = NULL;
                                 49                 :                : 
 3492                            50      [ +  +  - ]:           1996 :     switch (info & ~XLR_INFO_MASK)
                                 51                 :                :     {
 3495                            52                 :           1989 :         case XLOG_SMGR_CREATE:
                                 53                 :           1989 :             id = "CREATE";
                                 54                 :           1989 :             break;
 3495 andres@anarazel.de         55                 :GBC           7 :         case XLOG_SMGR_TRUNCATE:
                                 56                 :              7 :             id = "TRUNCATE";
                                 57                 :              7 :             break;
                                 58                 :                :     }
                                 59                 :                : 
 3495 andres@anarazel.de         60                 :CBC        1996 :     return id;
                                 61                 :                : }
        

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