We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bab0f54 commit ab9fc20Copy full SHA for ab9fc20
datafusion/physical-plan/src/sorts/index.rs
@@ -50,6 +50,7 @@
50
/// RecordBatches
51
/// ```
52
#[derive(Debug, Clone)]
53
+#[deprecated(since = "46.0.0", note = "unused and will be removed in the future")]
54
pub struct RowIndex {
55
/// The index of the stream (uniquely identifies the stream)
56
pub stream_idx: usize,
datafusion/physical-plan/src/sorts/mod.rs
@@ -19,12 +19,9 @@
19
20
mod builder;
21
mod cursor;
22
-mod index;
23
mod merge;
24
pub mod partial_sort;
25
pub mod sort;
26
pub mod sort_preserving_merge;
27
mod stream;
28
pub mod streaming_merge;
29
-
30
-pub use index::RowIndex;
0 commit comments