You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Introduce extendable access plan for DF scans (#5855)
Building on top of some previous work, this should make using extensions
more durable in the future, allowing us to support multiple ones.
---------
Signed-off-by: Adam Gutglick <[email protected]>
// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
+
4
+
use vortex::scan::ScanBuilder;
5
+
use vortex::scan::Selection;
6
+
7
+
/// Custom Vortex-specific information that can be provided by external indexes or other sources.
8
+
///
9
+
/// This is intended as a low-level interface for users building their own data systems, see the [advance index] example from the DataFusion repo for a similar usage with Parquet.
0 commit comments