Skip to content

Commit

Permalink
Update src/event/format/mod.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Devdutt Shenoi <[email protected]>
Signed-off-by: Nitish Tiwari <[email protected]>
  • Loading branch information
nitisht and de-sh authored Dec 11, 2024
1 parent 5e4f89f commit 8bbe970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/event/format/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ pub fn override_num_fields_from_schema(schema: Vec<Arc<Field>>) -> Vec<Arc<Field
schema
.iter()
.map(|field| {
if field.data_type().is_numeric() && field.data_type() != &DataType::Float64 {
if field.data_type().is_numeric() {
Arc::new(Field::new(
field.name(),
DataType::Float64,
Expand Down

0 comments on commit 8bbe970

Please sign in to comment.