You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by tu...@apache.org on 2023/06/01 20:29:56 UTC

[arrow-rs] branch master updated: fix: make SerializedRowGroupReader::new() public (#4331)

This is an automated email from the ASF dual-hosted git repository.

tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new a9c5c97a5 fix: make SerializedRowGroupReader::new() public (#4331)
a9c5c97a5 is described below

commit a9c5c97a5d42b2c9af34b449bf1d6f42c7f27d16
Author: Bo Lu <bu...@users.noreply.github.com>
AuthorDate: Fri Jun 2 06:29:49 2023 +1000

    fix: make SerializedRowGroupReader::new() public (#4331)
---
 parquet/src/file/serialized_reader.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/parquet/src/file/serialized_reader.rs b/parquet/src/file/serialized_reader.rs
index 2b3536904..2ed9b1653 100644
--- a/parquet/src/file/serialized_reader.rs
+++ b/parquet/src/file/serialized_reader.rs
@@ -299,7 +299,7 @@ pub struct SerializedRowGroupReader<'a, R: ChunkReader> {
 
 impl<'a, R: ChunkReader> SerializedRowGroupReader<'a, R> {
     /// Creates new row group reader from a file, row group metadata and custom config.
-    fn new(
+    pub fn new(
         chunk_reader: Arc<R>,
         metadata: &'a RowGroupMetaData,
         page_locations: Option<&'a [Vec<PageLocation>]>,