Skip to content

Commit 4218490

Browse files
style: clippy fixes
1 parent 18958dd commit 4218490

File tree

3 files changed

+40
-17
lines changed

3 files changed

+40
-17
lines changed

src/handlers/http/modal/utils/logstream_utils.rs

-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,6 @@ async fn update_stream(
150150
return Ok(req.headers().clone());
151151
}
152152
validate_and_update_custom_partition(stream_name, custom_partition).await?;
153-
154153
Ok(req.headers().clone())
155154
}
156155

src/handlers/http/otel/opentelemetry.proto.resource.v1.rs

+17-16
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,20 @@
1818
// This file was generated by protoc-gen-rust-protobuf. The file was edited after the generation.
1919
// All the repeated fields were changed to Option<Vec<T>>
2020

21-
use crate::handlers::http::otel::proto::common::v1::KeyValue;
22-
use serde::{Deserialize, Serialize};
23-
24-
#[derive(Serialize, Deserialize, Debug)]
25-
/// Resource information.
26-
pub struct Resource {
27-
/// Set of attributes that describe the resource.
28-
/// Attribute keys MUST be unique (it is not allowed to have more than one
29-
/// attribute with the same key).
30-
#[serde(rename = "attributes")]
31-
pub attributes: Option<Vec<KeyValue>>,
32-
/// dropped_attributes_count is the number of dropped attributes. If the value is 0, then
33-
/// no attributes were dropped.
34-
#[serde(rename = "droppedAttributesCount")]
35-
pub dropped_attributes_count: Option<u32>,
36-
}
21+
use crate::handlers::http::otel::proto::common::v1::KeyValue;
22+
use serde::{Deserialize, Serialize};
23+
24+
#[derive(Serialize, Deserialize, Debug)]
25+
/// Resource information.
26+
pub struct Resource {
27+
/// Set of attributes that describe the resource.
28+
/// Attribute keys MUST be unique (it is not allowed to have more than one
29+
/// attribute with the same key).
30+
#[serde(rename = "attributes")]
31+
pub attributes: Option<Vec<KeyValue>>,
32+
/// dropped_attributes_count is the number of dropped attributes. If the value is 0, then
33+
/// no attributes were dropped.
34+
#[serde(rename = "droppedAttributesCount")]
35+
pub dropped_attributes_count: Option<u32>,
36+
}
37+

src/utils/arrow/mod.rs

+23
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,29 @@ pub use batch_adapter::adapt_batch;
5656
pub use merged_reader::MergedRecordReader;
5757
use serde_json::{Map, Value};
5858

59+
/// example function for concat recordbatch(may not work)
60+
/// ```rust
61+
/// # use arrow::record_batch::RecordBatch;
62+
/// # use arrow::error::Result;
63+
///
64+
/// fn concat_batches(batch1: RecordBatch, batch2: RecordBatch) -> Result<RecordBatch> {
65+
/// let schema = batch1.schema();
66+
/// let columns = schema
67+
/// .fields()
68+
/// .iter()
69+
/// .enumerate()
70+
/// .map(|(i, _)| -> Result<_> {
71+
/// let array1 = batch1.column(i);
72+
/// let array2 = batch2.column(i);
73+
/// let array = arrow::compute::concat(&[array1.as_ref(), array2.as_ref()])?;
74+
/// Ok(array)
75+
/// })
76+
/// .collect::<Result<Vec<_>>>()?;
77+
///
78+
/// RecordBatch::try_new(schema.clone(), columns)
79+
/// }
80+
/// ```
81+
///
5982
/// Replaces columns in a record batch with new arrays.
6083
///
6184
/// # Arguments

0 commit comments

Comments
 (0)