We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67b577f commit f75f0c6Copy full SHA for f75f0c6
src/static_schema.rs
@@ -118,11 +118,7 @@ pub fn convert_static_schema_to_arrow_schema(
118
}
119
if let Some(time_partition) = time_partition {
120
if !time_partition_exists {
121
- return Err(anyhow! {
122
- format!(
123
- "time partition field {time_partition} does not exist in the schema for the static schema logstream"
124
- ),
125
- });
+ return Err(anyhow!("time partition field {time_partition} does not exist in the schema for the static schema logstream"));
126
127
128
add_parseable_fields_to_static_schema(parsed_schema)
0 commit comments