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 cb3803b commit 642202fCopy full SHA for 642202f
src/query/functions-v2/src/aggregates/aggregate_combinator_distinct.rs
@@ -18,7 +18,6 @@ use std::marker::PhantomData;
18
use std::sync::Arc;
19
20
use common_arrow::arrow::bitmap::Bitmap;
21
-use common_exception::ErrorCode;
22
use common_exception::Result;
23
use common_expression::types::number::NumberColumnBuilder;
24
use common_expression::types::DataType;
@@ -232,11 +231,7 @@ pub fn try_create(
232
231
_s: PhantomData,
233
_state: PhantomData,
234
})),
235
- _ =>
236
- return Err(ErrorCode::BadDataValueType(format!(
237
- "AggregateSumFunction does not support type '{:?}'",
238
- arguments[0]
239
- ))),
+ _ => {}
240
})
241
}
242
Ok(Arc::new(AggregateDistinctCombinator::<
0 commit comments