Skip to content

Commit

Permalink
Remove doc hidden from GenericColumnReader (#2090)
Browse files Browse the repository at this point in the history
* Remove doc hidden

* Fix private doc links
  • Loading branch information
tustvold committed Jul 16, 2022
1 parent 1738a90 commit 13adaa7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion parquet/src/arrow/record_reader/mod.rs
Expand Up @@ -45,7 +45,6 @@ pub(crate) const MIN_BATCH_SIZE: usize = 1024;
pub type RecordReader<T> =
GenericRecordReader<ScalarBuffer<<T as DataType>::T>, ColumnValueDecoderImpl<T>>;

#[doc(hidden)]
/// A generic stateful column reader that delimits semantic records
///
/// This type is hidden from the docs, and relies on private traits with no
Expand Down
7 changes: 3 additions & 4 deletions parquet/src/column/reader.rs
Expand Up @@ -108,12 +108,11 @@ pub type ColumnReaderImpl<T> = GenericColumnReader<
decoder::ColumnValueDecoderImpl<T>,
>;

#[doc(hidden)]
/// Reads data for a given column chunk, using the provided decoders:
///
/// - R: [`ColumnLevelDecoder`] used to decode repetition levels
/// - D: [`ColumnLevelDecoder`] used to decode definition levels
/// - V: [`ColumnValueDecoder`] used to decode value data
/// - R: `ColumnLevelDecoder` used to decode repetition levels
/// - D: `ColumnLevelDecoder` used to decode definition levels
/// - V: `ColumnValueDecoder` used to decode value data
pub struct GenericColumnReader<R, D, V> {
descr: ColumnDescPtr,

Expand Down

0 comments on commit 13adaa7

Please sign in to comment.