Package org.apache.cassandra.db.filter
Class ClusteringIndexNamesFilter
java.lang.Object
org.apache.cassandra.db.filter.AbstractClusteringIndexFilter
org.apache.cassandra.db.filter.ClusteringIndexNamesFilter
- All Implemented Interfaces:
ClusteringIndexFilter
A filter selecting rows given their clustering value.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.cassandra.db.filter.ClusteringIndexFilter
ClusteringIndexFilter.InternalDeserializer, ClusteringIndexFilter.Kind, ClusteringIndexFilter.Serializer -
Field Summary
Fields inherited from class org.apache.cassandra.db.filter.AbstractClusteringIndexFilter
reversed -
Constructor Summary
ConstructorsConstructorDescriptionClusteringIndexNamesFilter(NavigableSet<Clustering<?>> clusterings, boolean reversed) -
Method Summary
Modifier and TypeMethodDescriptionbooleanfilterNotIndexed(ColumnFilter columnFilter, UnfilteredRowIterator iterator) Returns an iterator that only returns the rows of the provided iterator that this filter selects.forPaging(ClusteringComparator comparator, Clustering<?> lastReturned, boolean inclusive) Returns a filter for continuing the paging of this filter given the last returned clustering prefix.getSlices(TableMetadata metadata) getUnfilteredRowIterator(ColumnFilter columnFilter, Partition partition) Given a partition, returns a row iterator for the rows of this partition that are selected by this filter.inthashCode()booleanintersects(ClusteringComparator comparator, Slice slice) Whether the data selected by this filter intersects with the provided slice.booleanisFullyCoveredBy(CachedPartition partition) Returns whether we can guarantee that a given cached partition contains all the data selected by this filter.booleanWhether this filter selects the head of a partition (i.e.kind()The set of requested rows.booleanselects(Clustering<?> clustering) Whether a given row is selected by this filter.booleanWhether this filter selects all the row of a partition (it's an "identity" filter).protected longserializedSizeInternal(int version) protected voidserializeInternal(DataOutputPlus out, int version) toCQLString(TableMetadata metadata, RowFilter rowFilter) toString(TableMetadata metadata) Methods inherited from class org.apache.cassandra.db.filter.AbstractClusteringIndexFilter
appendOrderByToCQLString, isEmpty, isReversed
-
Constructor Details
-
Method Details
-
requestedRows
The set of requested rows. Please note that this can be empty if only the static row is requested.- Returns:
- the set of requested clustering in clustering order (note that this is always in clustering order even if the query is reversed).
-
selectsAllPartition
public boolean selectsAllPartition()Description copied from interface:ClusteringIndexFilterWhether this filter selects all the row of a partition (it's an "identity" filter).- Returns:
- whether this filter selects all the row of a partition (it's an "identity" filter).
-
selects
Description copied from interface:ClusteringIndexFilterWhether a given row is selected by this filter.- Parameters:
clustering- the clustering of the row to test the selection of.- Returns:
- whether the row with clustering
clusteringis selected by this filter.
-
forPaging
public ClusteringIndexNamesFilter forPaging(ClusteringComparator comparator, Clustering<?> lastReturned, boolean inclusive) Description copied from interface:ClusteringIndexFilterReturns a filter for continuing the paging of this filter given the last returned clustering prefix.- Parameters:
comparator- the comparator for the table this is a filter for.lastReturned- the last clustering that was returned for the query we are paging for. The resulting filter will be such that results coming afterlastReturnedare returned (where coming after means "greater than" if the filter is not reversed, "lesser than" otherwise; futher, whether the comparison is strict or not depends oninclusive).inclusive- whether or not we want to include thelastReturnedin the newly returned page of results.- Returns:
- a new filter that selects results coming after
lastReturned.
-
isFullyCoveredBy
Description copied from interface:ClusteringIndexFilterReturns whether we can guarantee that a given cached partition contains all the data selected by this filter.- Parameters:
partition- the cached partition. This method assumed that the rows of this partition contains all the table columns.- Returns:
- whether we can guarantee that all data selected by this filter are in
partition.
-
isHeadFilter
public boolean isHeadFilter()Description copied from interface:ClusteringIndexFilterWhether this filter selects the head of a partition (i.e. it isn't reversed and selects all rows up to a certain point).- Returns:
- whether this filter selects the head of a partition.
-
filterNotIndexed
public UnfilteredRowIterator filterNotIndexed(ColumnFilter columnFilter, UnfilteredRowIterator iterator) Description copied from interface:ClusteringIndexFilterReturns an iterator that only returns the rows of the provided iterator that this filter selects.This method is the "dumb" counterpart to
ClusteringIndexFilter.getSlices(TableMetadata)in that it has no way to quickly get to what is actually selected, so it simply iterate over it all and filters out what shouldn't be returned. This should be avoided in general. Another difference withClusteringIndexFilter.getSlices(TableMetadata)is that this method also filter the queried columns in the returned result, while the former assumes that the provided iterator has already done it.- Parameters:
columnFilter- the columns to include in the rows of the result iterator.iterator- the iterator for which we should filter rows.- Returns:
- an iterator that only returns the rows (or rather Unfilted) from
iteratorthat are selected by this filter.
-
getSlices
-
getUnfilteredRowIterator
public UnfilteredRowIterator getUnfilteredRowIterator(ColumnFilter columnFilter, Partition partition) Description copied from interface:ClusteringIndexFilterGiven a partition, returns a row iterator for the rows of this partition that are selected by this filter.- Parameters:
columnFilter- the columns to include in the rows of the result iterator.partition- the partition containing the rows to filter.- Returns:
- a unfiltered row iterator returning those rows (or rather Unfiltered) from
partitionthat are selected by this filter.
-
intersects
Description copied from interface:ClusteringIndexFilterWhether the data selected by this filter intersects with the provided slice.- Parameters:
comparator- the comparator of the table this if a filter on.slice- the slice to check intersection with,- Returns:
- whether the data selected by this filter intersects with
slice.
-
toString
-
toCQLString
-
equals
-
hashCode
public int hashCode() -
kind
-
serializeInternal
- Specified by:
serializeInternalin classAbstractClusteringIndexFilter- Throws:
IOException
-
serializedSizeInternal
protected long serializedSizeInternal(int version) - Specified by:
serializedSizeInternalin classAbstractClusteringIndexFilter
-