LCOV - code coverage report
Current view: top level - src/backend/access/rmgrdesc - brindesc.c (source / functions) Coverage Total Hit
Test: PostgreSQL 20devel Lines: 71.4 % 56 40
Test Date: 2026-07-12 10:15:36 Functions: 100.0 % 2 2
Legend: Lines:     hit not hit
Branches: + taken - not taken # not executed
Branches: 61.9 % 21 13

             Branch data     Line data    Source code
       1                 :             : /*-------------------------------------------------------------------------
       2                 :             :  *
       3                 :             :  * brindesc.c
       4                 :             :  *    rmgr descriptor routines for BRIN indexes
       5                 :             :  *
       6                 :             :  * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
       7                 :             :  * Portions Copyright (c) 1994, Regents of the University of California
       8                 :             :  *
       9                 :             :  *
      10                 :             :  * IDENTIFICATION
      11                 :             :  *    src/backend/access/rmgrdesc/brindesc.c
      12                 :             :  *
      13                 :             :  *-------------------------------------------------------------------------
      14                 :             :  */
      15                 :             : #include "postgres.h"
      16                 :             : 
      17                 :             : #include "access/brin_xlog.h"
      18                 :             : 
      19                 :             : void
      20                 :        3222 : brin_desc(StringInfo buf, XLogReaderState *record)
      21                 :             : {
      22                 :        3222 :     char       *rec = XLogRecGetData(record);
      23                 :        3222 :     uint8       info = XLogRecGetInfo(record) & ~XLR_INFO_MASK;
      24                 :             : 
      25                 :        3222 :     info &= XLOG_BRIN_OPMASK;
      26         [ -  + ]:        3222 :     if (info == XLOG_BRIN_CREATE_INDEX)
      27                 :             :     {
      28                 :           0 :         xl_brin_createidx *xlrec = (xl_brin_createidx *) rec;
      29                 :             : 
      30                 :           0 :         appendStringInfo(buf, "v%d pagesPerRange %u",
      31                 :           0 :                          xlrec->version, xlrec->pagesPerRange);
      32                 :             :     }
      33         [ +  + ]:        3222 :     else if (info == XLOG_BRIN_INSERT)
      34                 :             :     {
      35                 :        1402 :         xl_brin_insert *xlrec = (xl_brin_insert *) rec;
      36                 :             : 
      37                 :        1402 :         appendStringInfo(buf, "heapBlk %u pagesPerRange %u offnum %u",
      38                 :             :                          xlrec->heapBlk,
      39                 :             :                          xlrec->pagesPerRange,
      40                 :        1402 :                          xlrec->offnum);
      41                 :             :     }
      42         [ +  + ]:        1820 :     else if (info == XLOG_BRIN_UPDATE)
      43                 :             :     {
      44                 :         295 :         xl_brin_update *xlrec = (xl_brin_update *) rec;
      45                 :             : 
      46                 :         295 :         appendStringInfo(buf, "heapBlk %u pagesPerRange %u old offnum %u, new offnum %u",
      47                 :             :                          xlrec->insert.heapBlk,
      48                 :             :                          xlrec->insert.pagesPerRange,
      49                 :         295 :                          xlrec->oldOffnum,
      50                 :         295 :                          xlrec->insert.offnum);
      51                 :             :     }
      52         [ +  + ]:        1525 :     else if (info == XLOG_BRIN_SAMEPAGE_UPDATE)
      53                 :             :     {
      54                 :        1524 :         xl_brin_samepage_update *xlrec = (xl_brin_samepage_update *) rec;
      55                 :             : 
      56                 :        1524 :         appendStringInfo(buf, "offnum %u", xlrec->offnum);
      57                 :             :     }
      58         [ +  - ]:           1 :     else if (info == XLOG_BRIN_REVMAP_EXTEND)
      59                 :             :     {
      60                 :           1 :         xl_brin_revmap_extend *xlrec = (xl_brin_revmap_extend *) rec;
      61                 :             : 
      62                 :           1 :         appendStringInfo(buf, "targetBlk %u", xlrec->targetBlk);
      63                 :             :     }
      64         [ #  # ]:           0 :     else if (info == XLOG_BRIN_DESUMMARIZE)
      65                 :             :     {
      66                 :           0 :         xl_brin_desummarize *xlrec = (xl_brin_desummarize *) rec;
      67                 :             : 
      68                 :           0 :         appendStringInfo(buf, "pagesPerRange %u, heapBlk %u, page offset %u",
      69                 :           0 :                          xlrec->pagesPerRange, xlrec->heapBlk, xlrec->regOffset);
      70                 :             :     }
      71                 :        3222 : }
      72                 :             : 
      73                 :             : const char *
      74                 :        3222 : brin_identify(uint8 info)
      75                 :             : {
      76                 :        3222 :     const char *id = NULL;
      77                 :             : 
      78   [ -  +  -  +  :        3222 :     switch (info & ~XLR_INFO_MASK)
             +  +  +  -  
                      - ]
      79                 :             :     {
      80                 :           0 :         case XLOG_BRIN_CREATE_INDEX:
      81                 :           0 :             id = "CREATE_INDEX";
      82                 :           0 :             break;
      83                 :        1402 :         case XLOG_BRIN_INSERT:
      84                 :        1402 :             id = "INSERT";
      85                 :        1402 :             break;
      86                 :           0 :         case XLOG_BRIN_INSERT | XLOG_BRIN_INIT_PAGE:
      87                 :           0 :             id = "INSERT+INIT";
      88                 :           0 :             break;
      89                 :         290 :         case XLOG_BRIN_UPDATE:
      90                 :         290 :             id = "UPDATE";
      91                 :         290 :             break;
      92                 :           5 :         case XLOG_BRIN_UPDATE | XLOG_BRIN_INIT_PAGE:
      93                 :           5 :             id = "UPDATE+INIT";
      94                 :           5 :             break;
      95                 :        1524 :         case XLOG_BRIN_SAMEPAGE_UPDATE:
      96                 :        1524 :             id = "SAMEPAGE_UPDATE";
      97                 :        1524 :             break;
      98                 :           1 :         case XLOG_BRIN_REVMAP_EXTEND:
      99                 :           1 :             id = "REVMAP_EXTEND";
     100                 :           1 :             break;
     101                 :           0 :         case XLOG_BRIN_DESUMMARIZE:
     102                 :           0 :             id = "DESUMMARIZE";
     103                 :           0 :             break;
     104                 :             :     }
     105                 :             : 
     106                 :        3222 :     return id;
     107                 :             : }
        

Generated by: LCOV version 2.0-1