LCOV - differential code coverage report
Current view: top level - pageserver/pagebench/src/util - connstring.rs (source / functions) Coverage Total Hit UBC
Current: cd44433dd675caa99df17a61b18949c8387e2242.info Lines: 0.0 % 6 0 6
Current Date: 2024-01-09 02:06:09 Functions: 0.0 % 1 0 1
Baseline: 66c52a629a0f4a503e193045e0df4c77139e344b.info
Baseline Date: 2024-01-08 15:34:46

           TLA  Line data    Source code
       1 UBC           0 : pub(crate) fn connstring(host_port: &str, jwt: Option<&str>) -> String {
       2               0 :     let colon_and_jwt = if let Some(jwt) = jwt {
       3               0 :         format!(":{jwt}") // TODO: urlescape
       4                 :     } else {
       5               0 :         String::new()
       6                 :     };
       7               0 :     format!("postgres://postgres{colon_and_jwt}@{host_port}")
       8               0 : }
        

Generated by: LCOV version 2.1-beta