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 f25a09c commit dee333eCopy full SHA for dee333e
rust/datafusion/src/physical_plan/hash_aggregate.rs
@@ -1166,9 +1166,7 @@ fn create_builder(s: &ScalarValue) -> Box<dyn ArrayBuilder> {
1166
DataType::UInt16 => Box::new(ListBuilder::new(UInt16Builder::new(0))),
1167
DataType::UInt32 => Box::new(ListBuilder::new(UInt32Builder::new(0))),
1168
DataType::UInt64 => Box::new(ListBuilder::new(UInt64Builder::new(0))),
1169
- DataType::Utf8 => {
1170
- Box::new(ListBuilder::new(ListBuilder::new(StringBuilder::new(0))))
1171
- }
+ DataType::Utf8 => Box::new(ListBuilder::new(StringBuilder::new(0))),
1172
x => panic!("unexpected list type {}", x),
1173
},
1174
ScalarValue::Binary(_) => Box::new(BinaryBuilder::new(0)),
0 commit comments