LCOV - code coverage report
Current view: top level - src/bin/pg_waldump - smgrdesc.c (source / functions) Hit Total Coverage
Test: PostgreSQL 18devel Lines: 22 22 100.0 %
Date: 2025-04-01 16:15:31 Functions: 2 2 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /*-------------------------------------------------------------------------
       2             :  *
       3             :  * smgrdesc.c
       4             :  *    rmgr descriptor routines for catalog/storage.c
       5             :  *
       6             :  * Portions Copyright (c) 1996-2025, 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
      21        3986 : smgr_desc(StringInfo buf, XLogReaderState *record)
      22             : {
      23        3986 :     char       *rec = XLogRecGetData(record);
      24        3986 :     uint8       info = XLogRecGetInfo(record) & ~XLR_INFO_MASK;
      25             : 
      26        3986 :     if (info == XLOG_SMGR_CREATE)
      27             :     {
      28        3974 :         xl_smgr_create *xlrec = (xl_smgr_create *) rec;
      29             : 
      30        3974 :         appendStringInfoString(buf,
      31        3974 :                                relpathperm(xlrec->rlocator, xlrec->forkNum).str);
      32             :     }
      33          12 :     else if (info == XLOG_SMGR_TRUNCATE)
      34             :     {
      35          12 :         xl_smgr_truncate *xlrec = (xl_smgr_truncate *) rec;
      36             : 
      37          12 :         appendStringInfo(buf, "%s to %u blocks flags %d",
      38          12 :                          relpathperm(xlrec->rlocator, MAIN_FORKNUM).str,
      39             :                          xlrec->blkno, xlrec->flags);
      40             :     }
      41        3986 : }
      42             : 
      43             : const char *
      44        3990 : smgr_identify(uint8 info)
      45             : {
      46        3990 :     const char *id = NULL;
      47             : 
      48        3990 :     switch (info & ~XLR_INFO_MASK)
      49             :     {
      50        3976 :         case XLOG_SMGR_CREATE:
      51        3976 :             id = "CREATE";
      52        3976 :             break;
      53          14 :         case XLOG_SMGR_TRUNCATE:
      54          14 :             id = "TRUNCATE";
      55          14 :             break;
      56             :     }
      57             : 
      58        3990 :     return id;
      59             : }

Generated by: LCOV version 1.14