Skip to content

Commit 0149510

Browse files
author
umi
committed
fix
1 parent d6e440f commit 0149510

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

crates/paimon/src/arrow/format/parquet.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -785,11 +785,11 @@ struct ArrowFileReader {
785785
r: Box<dyn FileRead>,
786786
}
787787

788-
/// Default coalesce threshold: 1 MiB.
788+
/// coalesce threshold: 1 MiB.
789789
const RANGE_COALESCE_BYTES: u64 = 1024 * 1024;
790-
/// Default concurrent range fetches.
790+
/// concurrent range fetches.
791791
const RANGE_FETCH_CONCURRENCY: usize = 10;
792-
/// Default metadata prefetch hint: 512 KiB.
792+
/// metadata prefetch hint: 512 KiB.
793793
const METADATA_SIZE_HINT: usize = 512 * 1024;
794794
/// Minimum range size for splitting: 4 MiB.
795795
/// Ranges smaller than this will not be split further to avoid

0 commit comments

Comments
 (0)