Delta Lake implementation is using a custom FileIndex implementation called TahoeFileIndex.
Therefore, we can support skipping for Delta Lake in a similar way that we support skipping for the built in formats by replacing the FileIndex with a custom implementation which overrides the listFilesmethod and includes the data skipping logic.
Delta Lake implementation is using a custom
FileIndeximplementation calledTahoeFileIndex.Therefore, we can support skipping for Delta Lake in a similar way that we support skipping for the built in formats by replacing the
FileIndexwith a custom implementation which overrides thelistFilesmethod and includes the data skipping logic.