LCOV - differential code coverage report
Current view: top level - src/test/modules/test_extensions - test_ext.c (source / functions) Coverage Total Hit UNC GNC
Current: bed3ffbf9d952be6c7d739d068cdce44c046dfb7 vs 574581b50ac9c63dd9e4abebb731a3b67e5b50f6 Lines: 100.0 % 5 5 5
Current Date: 2026-05-05 10:23:31 +0900 Functions: 100.0 % 3 3 3
Baseline: lcov-20260505-025707-baseline Branches: 50.0 % 2 1 1 1
Baseline Date: 2026-05-05 10:27:06 +0900 Line coverage date bins:
Legend: Lines:     hit not hit
Branches: + taken - not taken # not executed
(30,360] days: 100.0 % 5 5 5
Function coverage date bins:
(30,360] days: 100.0 % 3 3 3
Branch coverage date bins:
(30,360] days: 50.0 % 2 1 1 1

 Age         Owner                    Branch data    TLA  Line data    Source code
                                  1                 :                : /*
                                  2                 :                :  * test_ext.c
                                  3                 :                :  *
                                  4                 :                :  * Dummy C extension for testing extension_control_path with pg_upgrade
                                  5                 :                :  *
                                  6                 :                :  * Portions Copyright (c) 2026, PostgreSQL Global Development Group
                                  7                 :                :  */
                                  8                 :                : #include "postgres.h"
                                  9                 :                : 
                                 10                 :                : #include "fmgr.h"
                                 11                 :                : 
   50 peter@eisentraut.org       12                 :GNC           5 : PG_MODULE_MAGIC;
                                 13                 :                : 
                                 14                 :              4 : PG_FUNCTION_INFO_V1(test_ext);
                                 15                 :                : 
                                 16                 :                : Datum
                                 17                 :              2 : test_ext(PG_FUNCTION_ARGS)
                                 18                 :                : {
                                 19         [ +  - ]:              2 :     ereport(NOTICE,
                                 20                 :                :             (errmsg("running successful")));
                                 21                 :              2 :     PG_RETURN_VOID();
                                 22                 :                : }
        

Generated by: LCOV version 2.5.0-beta