LCOV - differential code coverage report
Current view: top level - src/include/utils - pg_lsn.h (source / functions) Coverage Total Hit CBC
Current: Differential Code Coverage 16@8cea358b128 vs 17@8cea358b128 Lines: 100.0 % 4 4 4
Current Date: 2024-04-14 14:21:10 Functions: 100.0 % 2 2 2
Baseline: 16@8cea358b128 Branches: - 0 0
Baseline Date: 2024-04-14 14:21:09 Line coverage date bins:
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed (240..) days: 100.0 % 4 4 4
Function coverage date bins:
(240..) days: 100.0 % 2 2 2

 Age         Owner                    Branch data    TLA  Line data    Source code
                                  1                 :                : /*-------------------------------------------------------------------------
                                  2                 :                :  *
                                  3                 :                :  * pg_lsn.h
                                  4                 :                :  *      Declarations for operations on log sequence numbers (LSNs) of
                                  5                 :                :  *      PostgreSQL.
                                  6                 :                :  *
                                  7                 :                :  *
                                  8                 :                :  * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
                                  9                 :                :  * Portions Copyright (c) 1994, Regents of the University of California
                                 10                 :                :  *
                                 11                 :                :  * src/include/utils/pg_lsn.h
                                 12                 :                :  *
                                 13                 :                :  *-------------------------------------------------------------------------
                                 14                 :                :  */
                                 15                 :                : #ifndef PG_LSN_H
                                 16                 :                : #define PG_LSN_H
                                 17                 :                : 
                                 18                 :                : #include "access/xlogdefs.h"
                                 19                 :                : #include "fmgr.h"
                                 20                 :                : 
                                 21                 :                : static inline XLogRecPtr
  565 peter@eisentraut.org       22                 :CBC      214140 : DatumGetLSN(Datum X)
                                 23                 :                : {
                                 24                 :         214140 :     return (XLogRecPtr) DatumGetInt64(X);
                                 25                 :                : }
                                 26                 :                : 
                                 27                 :                : static inline Datum
                                 28                 :         265600 : LSNGetDatum(XLogRecPtr X)
                                 29                 :                : {
                                 30                 :         265600 :     return Int64GetDatum((int64) X);
                                 31                 :                : }
                                 32                 :                : 
                                 33                 :                : #define PG_GETARG_LSN(n)     DatumGetLSN(PG_GETARG_DATUM(n))
                                 34                 :                : #define PG_RETURN_LSN(x)     return LSNGetDatum(x)
                                 35                 :                : 
                                 36                 :                : extern XLogRecPtr pg_lsn_in_internal(const char *str, bool *have_error);
                                 37                 :                : 
                                 38                 :                : #endif                          /* PG_LSN_H */
        

Generated by: LCOV version 2.1-beta2-3-g6141622