Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions parquet/src/arrow/arrow_reader/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,13 @@ pub mod statistics;
/// [`StatisticsConverter`]: statistics::StatisticsConverter
/// [Querying Parquet with Millisecond Latency]: https://arrow.apache.org/blog/2022/12/26/querying-parquet-with-millisecond-latency/
pub struct ArrowReaderBuilder<T> {
/// The "input" to read parquet data from.
///
/// Note in the case of the [`ParquetPushDecoderBuilder`], there
/// is no underlying input, which is indicated by a type parameter of [`NoInput`]
///
/// [`ParquetPushDecoderBuilder`]: crate::arrow::push_decoder::ParquetPushDecoderBuilder
/// [`NoInput`]: crate::arrow::push_decoder::NoInput
pub(crate) input: T,

pub(crate) metadata: Arc<ParquetMetaData>,
Expand Down
Loading
Loading