@Public public interface Split extends Serializable
Modifier and Type | Method and Description |
---|---|
default Optional<List<RawFile>> |
convertToRawFiles()
|
default Optional<List<DeletionFile>> |
deletionFiles()
Return the deletion file of the data file, indicating which row in the data file was deleted.
|
default Optional<List<IndexFile>> |
indexFiles()
* Return the index file of the data file, for example, bloom-filter index.
|
long |
rowCount() |
long rowCount()
default Optional<List<RawFile>> convertToRawFiles()
Optional
wrapping
a list of RawFile
s to be read without merging. Otherwise, returns Optional.empty()
.default Optional<List<DeletionFile>> deletionFiles()
If there is no corresponding deletion file, the element will be null.
Copyright © 2023–2024 The Apache Software Foundation. All rights reserved.