Class ColumnRangeFilter (2.23.1)

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

NameDescription
family_id str

The column family that contains the columns. Must be of the form <code>_a-zA-Z0-9][-_.a-zA-Z0-9]</code>*.

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:True if start_qualifier is passed and no inclusive_start was given.

inclusive_end bool

Boolean indicating if the end column should be included in the range (or excluded). Defaults to :data:True if end_qualifier is passed and no inclusive_end was given.