Skip to content

Commit e3fcaf2

Browse files
clippy
1 parent c257345 commit e3fcaf2

File tree

1 file changed

+1
-1
lines changed
  • datafusion/physical-plan/src/aggregates/group_values/multi_group_by

1 file changed

+1
-1
lines changed

datafusion/physical-plan/src/aggregates/group_values/multi_group_by/bytes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ mod tests {
430430
fn test_byte_group_value_builder_overflow() {
431431
let mut builder = ByteGroupValueBuilder::<i32>::new(OutputType::Utf8);
432432

433-
let large_string = std::iter::repeat('a').take(1024 * 1024).collect::<String>();
433+
let large_string = "a".repeat(1024 * 1024);
434434

435435
let array =
436436
Arc::new(StringArray::from(vec![Some(large_string.as_str())])) as ArrayRef;

0 commit comments

Comments
 (0)