-
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
affe799
commit 8aa1545
Showing
3 changed files
with
25 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,24 @@ | ||
# SupportsRowIndexFilters | ||
|
||
`SupportsRowIndexFilters` is...FIXME | ||
`SupportsRowIndexFilters` is an [abstraction](#contract) of [file indices](#implementations) that can support [row index filters](#rowIndexFilters). | ||
|
||
!!! note "Appears Change Data Feed Only" | ||
The only implementation of `SupportsRowIndexFilters` is [TahoeFileIndex](TahoeFileIndex.md) yet [rowIndexFilters](#rowIndexFilters) is only used to create [CdcAddFileIndex](change-data-feed/CdcAddFileIndex.md#rowIndexFilters) and [TahoeRemoveFileIndex](change-data-feed/TahoeRemoveFileIndex.md#rowIndexFilters) for [Change Data Feed](change-data-feed/index.md) for [CDCReaderImpl](change-data-feed/CDCReaderImpl.md#processDeletionVectorActions). | ||
|
||
## Contract | ||
|
||
### Row Index Filters { #rowIndexFilters } | ||
|
||
```scala | ||
rowIndexFilters: Option[Map[String, RowIndexFilterType]] = None | ||
``` | ||
|
||
A mapping of `URI`-encoded file paths to a row index filter type. | ||
|
||
Used when: | ||
|
||
* `CDCReaderImpl` is requested to [processDeletionVectorActions](change-data-feed/CDCReaderImpl.md#processDeletionVectorActions) (to create a [CdcAddFileIndex](change-data-feed/CdcAddFileIndex.md#rowIndexFilters) and a [TahoeRemoveFileIndex](change-data-feed/TahoeRemoveFileIndex.md#rowIndexFilters)) | ||
|
||
## Implementations | ||
|
||
* [TahoeFileIndex](TahoeFileIndex.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters