Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
Signed-off-by: Devan <[email protected]>
  • Loading branch information
devanbenz committed Sep 4, 2024
1 parent 22fd1b5 commit d60a75d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions datafusion/functions/src/string/concat_ws.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,7 @@ impl Default for ConcatWsFunc {
impl ConcatWsFunc {
pub fn new() -> Self {
Self {
signature: Signature::variadic_any(
Volatility::Immutable,
),
signature: Signature::variadic_any(Volatility::Immutable),
}
}
}
Expand Down Expand Up @@ -436,7 +434,7 @@ mod tests {
use std::sync::Arc;

use arrow::array::{Array, ArrayRef, StringArray};
use arrow::datatypes::DataType::{Utf8, LargeUtf8, Utf8View};
use arrow::datatypes::DataType::{LargeUtf8, Utf8, Utf8View};

use crate::string::concat_ws::ConcatWsFunc;
use datafusion_common::Result;
Expand Down

0 comments on commit d60a75d

Please sign in to comment.