Skip to content

Commit a36b63f

Browse files
committed
fix io::exec::rowids::test::test_stats
Change-Id: Ic0a4e492eb128316df95d04e3780547100b93de1
1 parent a29bc29 commit a36b63f

File tree

2 files changed

+41
-35
lines changed

2 files changed

+41
-35
lines changed

Cargo.lock

Lines changed: 40 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/lance/src/io/exec/rowids.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ impl ExecutionPlan for AddRowAddrExec {
303303
// is a minimum size of 64 bytes.
304304
let mut added_byte_size = stats
305305
.num_rows
306-
.map(|n| (n * 8).max(64))
306+
.map(|n| n * 8)
307307
.add(&Precision::Exact(base_size));
308308
if row_id_col_stats
309309
.null_count

0 commit comments

Comments
 (0)