Skip to content

Minor: Encapsulate type check in GroupValuesColumn, avoid panic #12620

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 8 commits into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ use arrow::datatypes::{
};
use arrow::record_batch::RecordBatch;
use arrow_array::{Array, ArrayRef};
use arrow_schema::{DataType, SchemaRef};
use arrow_schema::{DataType, Schema, SchemaRef};
use datafusion_common::hash_utils::create_hashes;
use datafusion_common::{DataFusionError, Result};
use datafusion_common::{internal_err, DataFusionError, Result};
use datafusion_execution::memory_pool::proxy::{RawTableAllocExt, VecAllocExt};
use datafusion_expr::EmitTo;
use datafusion_physical_expr::binary_map::OutputType;
Expand Down Expand Up @@ -67,6 +67,7 @@ pub struct GroupValuesColumn {
}

impl GroupValuesColumn {
/// Create a new instance of GroupValuesColumn if supported for the specified schema
pub fn try_new(schema: SchemaRef) -> Result<Self> {
let map = RawTable::with_capacity(0);
Ok(Self {
Expand All @@ -78,6 +79,38 @@ impl GroupValuesColumn {
random_state: Default::default(),
})
}

/// Returns true if [`GroupValuesColumn`] supports for the specified schema
pub fn supported_schema(schema: &Schema) -> bool {
schema
.fields()
.iter()
.map(|f| f.data_type())
.all(Self::supported_type)
}

/// Returns true if the specified data type is supported by [`GroupValuesColumn`]
fn supported_type(data_type: &DataType) -> bool {
matches!(
*data_type,
DataType::Int8
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should we use DataType::is_signed_integer DataType::is_unsigned_integer

we can also use is_numeric but it includes Decimals

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This list needs to be kept in sync with what special implementations are available in GroupValuesColumns -- I will add a comment to make that clearer

| DataType::Int16
| DataType::Int32
| DataType::Int64
| DataType::UInt8
| DataType::UInt16
| DataType::UInt32
| DataType::UInt64
| DataType::Float32
| DataType::Float64
| DataType::Utf8
| DataType::LargeUtf8
| DataType::Binary
| DataType::LargeBinary
| DataType::Date32
| DataType::Date64
)
}
}

impl GroupValues for GroupValuesColumn {
Expand Down Expand Up @@ -154,7 +187,9 @@ impl GroupValues for GroupValuesColumn {
let b = ByteGroupValueBuilder::<i64>::new(OutputType::Binary);
v.push(Box::new(b) as _)
}
dt => todo!("{dt} not impl"),
dt => {
return internal_err!("{dt} not supported in GroupValuesColumn")
}
}
}
self.group_values = v;
Expand Down
29 changes: 1 addition & 28 deletions datafusion/physical-plan/src/aggregates/group_values/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,36 +96,9 @@ pub fn new_group_values(schema: SchemaRef) -> Result<Box<dyn GroupValues>> {
}
}

if schema
.fields()
.iter()
.map(|f| f.data_type())
.all(has_row_like_feature)
{
if GroupValuesColumn::supported_schema(schema.as_ref()) {
Ok(Box::new(GroupValuesColumn::try_new(schema)?))
} else {
Ok(Box::new(GroupValuesRows::try_new(schema)?))
}
}

fn has_row_like_feature(data_type: &DataType) -> bool {
matches!(
*data_type,
DataType::Int8
| DataType::Int16
| DataType::Int32
| DataType::Int64
| DataType::UInt8
| DataType::UInt16
| DataType::UInt32
| DataType::UInt64
| DataType::Float32
| DataType::Float64
| DataType::Utf8
| DataType::LargeUtf8
| DataType::Binary
| DataType::LargeBinary
| DataType::Date32
| DataType::Date64
)
}
Loading