File tree Expand file tree Collapse file tree
datafusion/datasource-parquet/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ pub(super) struct ParquetMorselizer {
104104 /// Factory for instantiating parquet reader
105105 pub parquet_file_reader_factory : Arc < dyn ParquetFileReaderFactory > ,
106106 /// Should the filters be evaluated during the parquet scan using
107- /// [`DataFusionArrowPredicate `](row_filter::DatafusionArrowPredicate)?
107+ /// [`DatafusionArrowPredicate `](crate:: row_filter::DatafusionArrowPredicate)?
108108 pub pushdown_filters : bool ,
109109 /// Should the filters be reordered to optimize the scan?
110110 pub reorder_filters : bool ,
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ pub(crate) struct PushDecoderStreamState {
123123}
124124
125125impl PushDecoderStreamState {
126- /// Drive the state machine to completion as a [`Stream`] of record batches.
126+ /// Drive the state machine to completion as a [`futures:: Stream`] of record batches.
127127 ///
128128 /// The returned stream is fused and boxed so the caller can wrap it (for
129129 /// example, with an early-stopping adapter) without naming the unfold type.
You can’t perform that action at this time.
0 commit comments