Skip to content

Commit 4f960ab

Browse files
committed
chore: fmt
1 parent 113b099 commit 4f960ab

File tree

1 file changed

+4
-2
lines changed
  • rust/cubestore/cubestore/src/queryplanner

1 file changed

+4
-2
lines changed

rust/cubestore/cubestore/src/queryplanner/udfs.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
use super::udf_xirr::XirrAccumulator;
12
use crate::queryplanner::coalesce::{coalesce, SUPPORTED_COALESCE_TYPES};
23
use crate::queryplanner::hll::{Hll, HllUnion};
34
use crate::queryplanner::udf_xirr::create_xirr_udaf;
@@ -19,7 +20,6 @@ use smallvec::smallvec;
1920
use smallvec::SmallVec;
2021
use std::sync::Arc;
2122
use std::time::SystemTime;
22-
use super::udf_xirr::XirrAccumulator;
2323

2424
#[derive(Copy, Clone, Debug, Serialize, Deserialize)]
2525
pub enum CubeScalarUDFKind {
@@ -187,7 +187,9 @@ impl CubeScalarUDF for Now {
187187
}
188188
};
189189

190-
Ok(ColumnarValue::Scalar(ScalarValue::TimestampNanosecond(Some(nanos))))
190+
Ok(ColumnarValue::Scalar(ScalarValue::TimestampNanosecond(
191+
Some(nanos),
192+
)))
191193
}),
192194
}
193195
}

0 commit comments

Comments
 (0)