LCOV - code coverage report
Current view: top level - src/backend/utils/misc - pg_config.c (source / functions) Coverage Total Hit
Test: Code coverage Lines: 100.0 % 18 18
Test Date: 2026-01-26 10:56:24 Functions: 100.0 % 1 1
Legend: Lines:     hit not hit
Branches: + taken - not taken # not executed
Branches: 100.0 % 2 2

             Branch data     Line data    Source code
       1                 :             : /*-------------------------------------------------------------------------
       2                 :             :  *
       3                 :             :  * pg_config.c
       4                 :             :  *              Expose same output as pg_config except as an SRF
       5                 :             :  *
       6                 :             :  * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
       7                 :             :  * Portions Copyright (c) 1994, Regents of the University of California
       8                 :             :  *
       9                 :             :  * IDENTIFICATION
      10                 :             :  *        src/backend/utils/misc/pg_config.c
      11                 :             :  *
      12                 :             :  *-------------------------------------------------------------------------
      13                 :             :  */
      14                 :             : 
      15                 :             : #include "postgres.h"
      16                 :             : 
      17                 :             : #include "common/config_info.h"
      18                 :             : #include "funcapi.h"
      19                 :             : #include "miscadmin.h"
      20                 :             : #include "utils/builtins.h"
      21                 :             : 
      22                 :             : Datum
      23                 :           1 : pg_config(PG_FUNCTION_ARGS)
      24                 :             : {
      25                 :           1 :         ReturnSetInfo *rsinfo = (ReturnSetInfo *) fcinfo->resultinfo;
      26                 :           1 :         ConfigData *configdata;
      27                 :           1 :         size_t          configdata_len;
      28                 :           1 :         int                     i = 0;
      29                 :             : 
      30                 :             :         /* initialize our tuplestore */
      31                 :           1 :         InitMaterializedSRF(fcinfo, 0);
      32                 :             : 
      33                 :           1 :         configdata = get_configdata(my_exec_path, &configdata_len);
      34         [ +  + ]:          24 :         for (i = 0; i < configdata_len; i++)
      35                 :             :         {
      36                 :          23 :                 Datum           values[2];
      37                 :          23 :                 bool            nulls[2];
      38                 :             : 
      39                 :          23 :                 memset(values, 0, sizeof(values));
      40                 :          23 :                 memset(nulls, 0, sizeof(nulls));
      41                 :             : 
      42                 :          23 :                 values[0] = CStringGetTextDatum(configdata[i].name);
      43                 :          23 :                 values[1] = CStringGetTextDatum(configdata[i].setting);
      44                 :             : 
      45                 :          23 :                 tuplestore_putvalues(rsinfo->setResult, rsinfo->setDesc, values, nulls);
      46                 :          23 :         }
      47                 :             : 
      48                 :           1 :         return (Datum) 0;
      49                 :           1 : }
        

Generated by: LCOV version 2.3.2-1