Skip to content

Commit 273991e

Browse files
authored
feat(reader): Make ArrowReaderBuilder::new public (#1748)
## Which issue does this PR close? - Part of #1749. ## What changes are included in this PR? - Change `ArrowReaderBuilder::new` to be `pub` instead of `pub(crate)`. ## Are these changes tested? - No new tests for this. Currently being used in DataFusion Comet: apache/datafusion-comet#2528
1 parent 471ef6b commit 273991e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/iceberg/src/arrow/reader.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ pub struct ArrowReaderBuilder {
6868

6969
impl ArrowReaderBuilder {
7070
/// Create a new ArrowReaderBuilder
71-
pub(crate) fn new(file_io: FileIO) -> Self {
71+
pub fn new(file_io: FileIO) -> Self {
7272
let num_cpus = available_parallelism().get();
7373

7474
ArrowReaderBuilder {

0 commit comments

Comments
 (0)