ColumnRangeFilter(
family_id: str,
start_qualifier: typing.Optional[bytes] = None,
end_qualifier: typing.Optional[bytes] = None,
inclusive_start: typing.Optional[bool] = None,
inclusive_end: typing.Optional[bool] = None,
)
A row filter to restrict to a range of columns.
Both the start and end column can be included or excluded in the range. By default, we include them both, but this can be changed with optional flags.
Parameters |
|
---|---|
Name | Description |
family_id |
str
The column family that contains the columns. Must be of the form |
start_qualifier |
bytes
The start of the range of columns. If no value is used, the backend applies no upper bound to the values. |
end_qualifier |
bytes
The end of the range of columns. If no value is used, the backend applies no upper bound to the values. |
inclusive_start |
bool
Boolean indicating if the start column should be included in the range (or excluded). Defaults to :data: |
inclusive_end |
bool
Boolean indicating if the end column should be included in the range (or excluded). Defaults to :data: |