LCOV - differential code coverage report
Current view: top level - src/backend/access/rmgrdesc - clogdesc.c (source / functions) Coverage Total Hit UNC UBC GBC GNC DUB
Current: Differential Code Coverage 16@8cea358b128 vs 17@8cea358b128 Lines: 66.7 % 21 14 2 5 12 2 3
Current Date: 2024-04-14 14:21:10 Functions: 100.0 % 2 2 1 1
Baseline: 16@8cea358b128 Branches: 28.6 % 7 2 5 2
Baseline Date: 2024-04-14 14:21:09 Line coverage date bins:
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed (120,180] days: 50.0 % 4 2 2 2
(240..) days: 70.6 % 17 12 5 12
Function coverage date bins:
(240..) days: 100.0 % 2 2 1 1
Branch coverage date bins:
(240..) days: 28.6 % 7 2 5 2

 Age         Owner                    Branch data    TLA  Line data    Source code
                                  1                 :                : /*-------------------------------------------------------------------------
                                  2                 :                :  *
                                  3                 :                :  * clogdesc.c
                                  4                 :                :  *    rmgr descriptor routines for access/transam/clog.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/clogdesc.c
                                 12                 :                :  *
                                 13                 :                :  *-------------------------------------------------------------------------
                                 14                 :                :  */
                                 15                 :                : #include "postgres.h"
                                 16                 :                : 
                                 17                 :                : #include "access/clog.h"
                                 18                 :                : 
                                 19                 :                : 
                                 20                 :                : void
 3433 heikki.linnakangas@i       21                 :GBC           2 : clog_desc(StringInfo buf, XLogReaderState *record)
                                 22                 :                : {
 3592                            23                 :              2 :     char       *rec = XLogRecGetData(record);
 3433                            24                 :              2 :     uint8       info = XLogRecGetInfo(record) & ~XLR_INFO_MASK;
                                 25                 :                : 
 2579 rhaas@postgresql.org       26         [ +  - ]:              2 :     if (info == CLOG_ZEROPAGE)
                                 27                 :                :     {
                                 28                 :                :         int64       pageno;
                                 29                 :                : 
  137 akorotkov@postgresql       30                 :GNC           2 :         memcpy(&pageno, rec, sizeof(pageno));
                                 31                 :              2 :         appendStringInfo(buf, "page %lld", (long long) pageno);
                                 32                 :                :     }
 2579 rhaas@postgresql.org       33         [ #  # ]:UBC           0 :     else if (info == CLOG_TRUNCATE)
                                 34                 :                :     {
                                 35                 :                :         xl_clog_truncate xlrec;
                                 36                 :                : 
                                 37                 :              0 :         memcpy(&xlrec, rec, sizeof(xl_clog_truncate));
  137 akorotkov@postgresql       38                 :UNC           0 :         appendStringInfo(buf, "page %lld; oldestXact %u",
                                 39                 :              0 :                          (long long) xlrec.pageno, xlrec.oldestXact);
                                 40                 :                :     }
 3495 andres@anarazel.de         41                 :GBC           2 : }
                                 42                 :                : 
                                 43                 :                : const char *
                                 44                 :              2 : clog_identify(uint8 info)
                                 45                 :                : {
                                 46                 :              2 :     const char *id = NULL;
                                 47                 :                : 
 3492                            48      [ +  -  - ]:              2 :     switch (info & ~XLR_INFO_MASK)
                                 49                 :                :     {
 3495                            50                 :              2 :         case CLOG_ZEROPAGE:
                                 51                 :              2 :             id = "ZEROPAGE";
                                 52                 :              2 :             break;
 3495 andres@anarazel.de         53                 :UBC           0 :         case CLOG_TRUNCATE:
                                 54                 :              0 :             id = "TRUNCATE";
                                 55                 :              0 :             break;
                                 56                 :                :     }
                                 57                 :                : 
 3495 andres@anarazel.de         58                 :GBC           2 :     return id;
                                 59                 :                : }
        

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