Line data Source code
1 : // @generated automatically by Diesel CLI.
2 :
3 0 : diesel::table! {
4 1840 : nodes (node_id) {
5 2904 : node_id -> Int8,
6 2904 : scheduling_policy -> Varchar,
7 2904 : listen_http_addr -> Varchar,
8 2904 : listen_http_port -> Int4,
9 5808 : listen_pg_addr -> Varchar,
10 5808 : listen_pg_port -> Int4,
11 1840 : }
12 1840 : }
13 :
14 0 : diesel::table! {
15 16298 : tenant_shards (tenant_id, shard_number, shard_count) {
16 19028 : tenant_id -> Varchar,
17 19004 : shard_number -> Int4,
18 19004 : shard_count -> Int4,
19 16298 : shard_stripe_size -> Int4,
20 32176 : generation -> Int4,
21 21008 : generation_pageserver -> Int8,
22 16298 : placement_policy -> Varchar,
23 16298 : config -> Text,
24 16298 : }
25 16298 : }
26 :
27 : diesel::allow_tables_to_appear_in_same_query!(nodes, tenant_shards,);
|