Skip to content

Commit a5b960c

Browse files
committed
Fix Cargo doc test again
1 parent 1ac8ba9 commit a5b960c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

datafusion/functions-aggregate/src/array_agg.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1164,7 +1164,7 @@ mod tests {
11641164
let pool = TrackingMemoryPool::default();
11651165
let total_size = acc.size(Some(&pool));
11661166
// if we don't use the memory pool: size(None); we get 17148
1167-
assert_eq!(total_size, 1056);
1167+
assert_eq!(total_size, 1096);
11681168

11691169
Ok(())
11701170
}

datafusion/functions-aggregate/src/utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ use datafusion_expr::ColumnarValue;
2424
use datafusion_physical_expr_common::physical_expr::PhysicalExpr;
2525

2626
/// Recursively claims all buffers in an ArrayData and its children with the memory pool.
27-
/// TODO: remove once https://github.com/apache/arrow-rs/pull/8918 lands.
27+
/// TODO: remove once <https://github.com/apache/arrow-rs/pull/8918> lands.
2828
pub(crate) fn claim_buffers_recursive(
2929
data: &arrow::array::ArrayData,
3030
pool: &dyn arrow_buffer::MemoryPool,

0 commit comments

Comments
 (0)