LCOV - code coverage report
Current view: top level - storage_controller/src - schema.rs (source / functions) Coverage Total Hit
Test: 91bf6c8f32e5e69adde6241313e732fdd6d6e277.info Lines: 0.0 % 54 0
Test Date: 2025-03-04 12:19:20 Functions: 0.0 % 168 0

            Line data    Source code
       1              : // @generated automatically by Diesel CLI.
       2              : 
       3            0 : diesel::table! {
       4            0 :     controllers (address, started_at) {
       5            0 :         address -> Varchar,
       6            0 :         started_at -> Timestamptz,
       7            0 :     }
       8            0 : }
       9              : 
      10            0 : diesel::table! {
      11            0 :     metadata_health (tenant_id, shard_number, shard_count) {
      12            0 :         tenant_id -> Varchar,
      13            0 :         shard_number -> Int4,
      14            0 :         shard_count -> Int4,
      15            0 :         healthy -> Bool,
      16            0 :         last_scrubbed_at -> Timestamptz,
      17            0 :     }
      18            0 : }
      19              : 
      20            0 : diesel::table! {
      21            0 :     nodes (node_id) {
      22            0 :         node_id -> Int8,
      23            0 :         scheduling_policy -> Varchar,
      24            0 :         listen_http_addr -> Varchar,
      25            0 :         listen_http_port -> Int4,
      26            0 :         listen_pg_addr -> Varchar,
      27            0 :         listen_pg_port -> Int4,
      28            0 :         availability_zone_id -> Varchar,
      29            0 :         listen_https_port -> Nullable<Int4>,
      30            0 :     }
      31            0 : }
      32              : 
      33            0 : diesel::table! {
      34            0 :     safekeepers (id) {
      35            0 :         id -> Int8,
      36            0 :         region_id -> Text,
      37            0 :         version -> Int8,
      38            0 :         host -> Text,
      39            0 :         port -> Int4,
      40            0 :         http_port -> Int4,
      41            0 :         availability_zone_id -> Text,
      42            0 :         scheduling_policy -> Varchar,
      43            0 :     }
      44            0 : }
      45              : 
      46            0 : diesel::table! {
      47            0 :     tenant_shards (tenant_id, shard_number, shard_count) {
      48            0 :         tenant_id -> Varchar,
      49            0 :         shard_number -> Int4,
      50            0 :         shard_count -> Int4,
      51            0 :         shard_stripe_size -> Int4,
      52            0 :         generation -> Nullable<Int4>,
      53            0 :         generation_pageserver -> Nullable<Int8>,
      54            0 :         placement_policy -> Varchar,
      55            0 :         splitting -> Int2,
      56            0 :         config -> Text,
      57            0 :         scheduling_policy -> Varchar,
      58            0 :         preferred_az_id -> Nullable<Varchar>,
      59            0 :     }
      60            0 : }
      61              : 
      62              : diesel::allow_tables_to_appear_in_same_query!(
      63              :     controllers,
      64              :     metadata_health,
      65              :     nodes,
      66              :     safekeepers,
      67              :     tenant_shards,
      68              : );
        

Generated by: LCOV version 2.1-beta