Skip to content

Commit c2535a3

Browse files
committed
Add Parquet IO test
1 parent 291e6e5 commit c2535a3

File tree

3 files changed

+640
-4
lines changed

3 files changed

+640
-4
lines changed

parquet/src/file/reader.rs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,12 @@ pub trait Length {
4848
/// Generates [`Read`]ers to read chunks of a Parquet data source.
4949
///
5050
/// The Parquet reader uses [`ChunkReader`] to access Parquet data, allowing
51-
/// multiple decoders to read concurrently from different locations in the same file.
51+
/// multiple decoders to read concurrently from different locations in the same
52+
/// file.
5253
///
53-
/// The trait provides:
54-
/// * random access (via [`Self::get_bytes`])
55-
/// * sequential (via [`Self::get_read`])
54+
/// The trait functions both as a reader and a factory for readers.
55+
/// * random access via [`Self::get_bytes`]
56+
/// * sequential access via the reader returned via factory method [`Self::get_read`]
5657
///
5758
/// # Provided Implementations
5859
/// * [`File`] for reading from local file system

0 commit comments

Comments
 (0)