Skip to content

Commit 2983891

Browse files
committed
fmt
1 parent 88d7c91 commit 2983891

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/query/functions-v2/src/scalars/string_multi_args.rs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
use std::sync::Arc;
1616

17-
use common_expression::types::NumberDataType;
1817
use common_expression::types::number::UInt8Type;
1918
use common_expression::types::string::StringColumn;
2019
use common_expression::types::string::StringColumnBuilder;
@@ -24,6 +23,7 @@ use common_expression::types::ArgType;
2423
use common_expression::types::DataType;
2524
use common_expression::types::GenericMap;
2625
use common_expression::types::NullableType;
26+
use common_expression::types::NumberDataType;
2727
use common_expression::types::StringType;
2828
use common_expression::types::ValueType;
2929
use common_expression::wrap_nullable;
@@ -266,7 +266,12 @@ pub fn register(registry: &mut FunctionRegistry) {
266266
Some(Arc::new(Function {
267267
signature: FunctionSignature {
268268
name: "char",
269-
args_type: vec![DataType::Nullable(Box::new(DataType::Number(NumberDataType::UInt8))); args_type.len()],
269+
args_type: vec![
270+
DataType::Nullable(Box::new(DataType::Number(
271+
NumberDataType::UInt8
272+
)));
273+
args_type.len()
274+
],
270275
return_type: DataType::Nullable(Box::new(DataType::String)),
271276
property: FunctionProperty::default(),
272277
},

0 commit comments

Comments
 (0)