Skip to content

Commit ab9fc20

Browse files
authored
Minor: deprecate unused index mod (#14534)
* Address comments * Address comments
1 parent bab0f54 commit ab9fc20

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

datafusion/physical-plan/src/sorts/index.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
/// RecordBatches
5151
/// ```
5252
#[derive(Debug, Clone)]
53+
#[deprecated(since = "46.0.0", note = "unused and will be removed in the future")]
5354
pub struct RowIndex {
5455
/// The index of the stream (uniquely identifies the stream)
5556
pub stream_idx: usize,

datafusion/physical-plan/src/sorts/mod.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,9 @@
1919
2020
mod builder;
2121
mod cursor;
22-
mod index;
2322
mod merge;
2423
pub mod partial_sort;
2524
pub mod sort;
2625
pub mod sort_preserving_merge;
2726
mod stream;
2827
pub mod streaming_merge;
29-
30-
pub use index::RowIndex;

0 commit comments

Comments
 (0)