Line data Source code
1 : // @generated automatically by Diesel CLI.
2 :
3 0 : diesel::table! {
4 1882 : nodes (node_id) {
5 2948 : node_id -> Int8,
6 2944 : scheduling_policy -> Varchar,
7 2944 : listen_http_addr -> Varchar,
8 2944 : listen_http_port -> Int4,
9 2944 : listen_pg_addr -> Varchar,
10 2944 : listen_pg_port -> Int4,
11 1882 : }
12 1882 : }
13 :
14 0 : diesel::table! {
15 16672 : tenant_shards (tenant_id, shard_number, shard_count) {
16 18360 : tenant_id -> Varchar,
17 18318 : shard_number -> Int4,
18 18334 : shard_count -> Int4,
19 16672 : shard_stripe_size -> Int4,
20 31672 : generation -> Int4,
21 20010 : generation_pageserver -> Int8,
22 16672 : placement_policy -> Varchar,
23 16672 : splitting -> Int2,
24 16672 : config -> Text,
25 16672 : }
26 16672 : }
27 :
28 : diesel::allow_tables_to_appear_in_same_query!(nodes, tenant_shards,);
|