LCOV - differential code coverage report
Current view: top level - src/backend/parser - parse_enr.c (source / functions) Coverage Total Hit CBC
Current: bed3ffbf9d952be6c7d739d068cdce44c046dfb7 vs 574581b50ac9c63dd9e4abebb731a3b67e5b50f6 Lines: 100.0 % 4 4 4
Current Date: 2026-05-05 10:23:31 +0900 Functions: 100.0 % 2 2 2
Baseline: lcov-20260505-025707-baseline Line coverage date bins:
Baseline Date: 2026-05-05 10:27:06 +0900 (360..) days: 100.0 % 4 4 4
Legend: Lines:     hit not hit Function coverage date bins:
(360..) days: 100.0 % 2 2 2

 Age         Owner                  TLA  Line data    Source code
                                  1                 : /*-------------------------------------------------------------------------
                                  2                 :  *
                                  3                 :  * parse_enr.c
                                  4                 :  *    parser support routines dealing with ephemeral named relations
                                  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/parser/parse_enr.c
                                 12                 :  *
                                 13                 :  *-------------------------------------------------------------------------
                                 14                 :  */
                                 15                 : #include "postgres.h"
                                 16                 : 
                                 17                 : #include "parser/parse_enr.h"
                                 18                 : 
                                 19                 : bool
 3322 kgrittn@postgresql.o       20 CBC      182228 : name_matches_visible_ENR(ParseState *pstate, const char *refname)
                                 21                 : {
                                 22          182228 :     return (get_visible_ENR_metadata(pstate->p_queryEnv, refname) != NULL);
                                 23                 : }
                                 24                 : 
                                 25                 : EphemeralNamedRelationMetadata
                                 26             359 : get_visible_ENR(ParseState *pstate, const char *refname)
                                 27                 : {
                                 28             359 :     return get_visible_ENR_metadata(pstate->p_queryEnv, refname);
                                 29                 : }
        

Generated by: LCOV version 2.5.0-beta