LCOV - differential code coverage report
Current view: top level - src/port - qsort.c (source / functions) Coverage Total Hit CBC
Current: 0e5ff9b9b45a657aea12440478dc002e9b01f138 vs 0123ce131fca454009439dfa3b2266d1d40737d7 Lines: 100.0 % 2 2 2
Current Date: 2026-03-14 14:10:32 -0400 Functions: 100.0 % 1 1 1
Baseline: lcov-20260315-024220-baseline Line coverage date bins:
Baseline Date: 2026-03-14 15:27:56 +0100 (360..) days: 100.0 % 2 2 2
Legend: Lines:     hit not hit Function coverage date bins:
(360..) days: 100.0 % 1 1 1

 Age         Owner                  TLA  Line data    Source code
                                  1                 : /*
                                  2                 :  *  qsort.c: standard quicksort algorithm
                                  3                 :  */
                                  4                 : 
                                  5                 : #include "c.h"
                                  6                 : 
                                  7                 : #define ST_SORT pg_qsort
                                  8                 : #define ST_ELEMENT_TYPE_VOID
                                  9                 : #define ST_COMPARE_RUNTIME_POINTER
                                 10                 : #define ST_SCOPE
                                 11                 : #define ST_DECLARE
                                 12                 : #define ST_DEFINE
                                 13                 : #include "lib/sort_template.h"
                                 14                 : 
                                 15                 : /*
                                 16                 :  * qsort comparator wrapper for strcmp.
                                 17                 :  */
                                 18                 : int
 4986 rhaas@postgresql.org       19 CBC       55247 : pg_qsort_strcmp(const void *a, const void *b)
                                 20                 : {
 3895 tgl@sss.pgh.pa.us          21           55247 :     return strcmp(*(const char *const *) a, *(const char *const *) b);
                                 22                 : }
        

Generated by: LCOV version 2.4-beta