api/region.rs
1// Copyright 2023 Greptime Team
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15use std::collections::HashMap;
16
17use common_base::AffectedRows;
18use greptime_proto::v1::region::RegionResponse as RegionResponseV1;
19
20/// This result struct is derived from [RegionResponseV1]
21#[derive(Debug)]
22pub struct RegionResponse {
23 pub affected_rows: AffectedRows,
24 pub extensions: HashMap<String, Vec<u8>>,
25}
26
27impl RegionResponse {
28 pub fn from_region_response(region_response: RegionResponseV1) -> Self {
29 Self {
30 affected_rows: region_response.affected_rows as _,
31 extensions: region_response.extensions,
32 }
33 }
34
35 /// Creates one response without extension
36 pub fn new(affected_rows: AffectedRows) -> Self {
37 Self {
38 affected_rows,
39 extensions: Default::default(),
40 }
41 }
42}