LCOV - code coverage report
Current view: top level - src/backend/utils/adt - version.c (source / functions) Hit Total Coverage
Test: PostgreSQL 17devel Lines: 2 2 100.0 %
Date: 2024-04-26 00:11:43 Functions: 1 1 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /*-------------------------------------------------------------------------
       2             :  *
       3             :  * version.c
       4             :  *   Returns the PostgreSQL version string
       5             :  *
       6             :  * Copyright (c) 1998-2024, PostgreSQL Global Development Group
       7             :  *
       8             :  * IDENTIFICATION
       9             :  *
      10             :  * src/backend/utils/adt/version.c
      11             :  *
      12             :  *-------------------------------------------------------------------------
      13             :  */
      14             : 
      15             : #include "postgres.h"
      16             : 
      17             : #include "utils/builtins.h"
      18             : 
      19             : 
      20             : Datum
      21          88 : pgsql_version(PG_FUNCTION_ARGS)
      22             : {
      23          88 :     PG_RETURN_TEXT_P(cstring_to_text(PG_VERSION_STR));
      24             : }

Generated by: LCOV version 1.14