Uses of Class
org.apache.cassandra.db.filter.RowFilter
-
-
Uses of RowFilter in org.apache.cassandra.cql3.restrictions
Methods in org.apache.cassandra.cql3.restrictions that return RowFilter Modifier and Type Method Description RowFilterStatementRestrictions. getRowFilter(IndexRegistry indexRegistry, QueryOptions options)Methods in org.apache.cassandra.cql3.restrictions with parameters of type RowFilter Modifier and Type Method Description voidMultiColumnRestriction.EQRestriction. addRowFilterTo(RowFilter filter, IndexRegistry indexRegistry, QueryOptions options)voidMultiColumnRestriction.INRestriction. addRowFilterTo(RowFilter filter, IndexRegistry indexRegistry, QueryOptions options)voidMultiColumnRestriction.NotNullRestriction. addRowFilterTo(RowFilter filter, IndexRegistry indexRegistry, QueryOptions options)voidMultiColumnRestriction.SliceRestriction. addRowFilterTo(RowFilter filter, IndexRegistry indexRegistry, QueryOptions options)voidRestriction. addRowFilterTo(RowFilter filter, IndexRegistry indexRegistry, QueryOptions options)Adds to the specified row filter the expressions corresponding to thisRestriction.voidSingleColumnRestriction.ContainsRestriction. addRowFilterTo(RowFilter filter, IndexRegistry indexRegistry, QueryOptions options)voidSingleColumnRestriction.EQRestriction. addRowFilterTo(RowFilter filter, IndexRegistry indexRegistry, QueryOptions options)voidSingleColumnRestriction.INRestriction. addRowFilterTo(RowFilter filter, IndexRegistry indexRegistry, QueryOptions options)voidSingleColumnRestriction.IsNotNullRestriction. addRowFilterTo(RowFilter filter, IndexRegistry indexRegistry, QueryOptions options)voidSingleColumnRestriction.LikeRestriction. addRowFilterTo(RowFilter filter, IndexRegistry indexRegistry, QueryOptions options)voidSingleColumnRestriction.SliceRestriction. addRowFilterTo(RowFilter filter, IndexRegistry indexRegistry, QueryOptions options)voidTokenRestriction. addRowFilterTo(RowFilter filter, IndexRegistry indexRegistry, QueryOptions options)voidCustomIndexExpression. addToRowFilter(RowFilter filter, TableMetadata table, QueryOptions options) -
Uses of RowFilter in org.apache.cassandra.cql3.statements
Methods in org.apache.cassandra.cql3.statements that return RowFilter Modifier and Type Method Description RowFilterSelectStatement. getRowFilter(QueryOptions options)May be used by custom QueryHandler implementationsRowFilterSelectStatement. rowFilterForInternalCalls()TheRowFilterfor this SELECT, assuming an internal call (no bound values in particular). -
Uses of RowFilter in org.apache.cassandra.db
Fields in org.apache.cassandra.db declared as RowFilter Modifier and Type Field Description protected RowFilterAbstractReadCommandBuilder. filterMethods in org.apache.cassandra.db that return RowFilter Modifier and Type Method Description RowFilterReadQuery. rowFilter()Filters/Resrictions on CQL rows.RowFilterSinglePartitionReadQuery.Group. rowFilter()Methods in org.apache.cassandra.db with parameters of type RowFilter Modifier and Type Method Description static PartitionRangeReadCommandPartitionRangeReadCommand. create(TableMetadata metadata, int nowInSec, ColumnFilter columnFilter, RowFilter rowFilter, DataLimits limits, DataRange dataRange)static ReadQueryPartitionRangeReadQuery. create(TableMetadata table, int nowInSec, ColumnFilter columnFilter, RowFilter rowFilter, DataLimits limits, DataRange dataRange)static SinglePartitionReadCommandSinglePartitionReadCommand. create(TableMetadata metadata, int nowInSec, ColumnFilter columnFilter, RowFilter rowFilter, DataLimits limits, DecoratedKey partitionKey, ClusteringIndexFilter clusteringIndexFilter)Creates a new read command on a single partition.static SinglePartitionReadCommandSinglePartitionReadCommand. create(TableMetadata metadata, int nowInSec, ColumnFilter columnFilter, RowFilter rowFilter, DataLimits limits, DecoratedKey partitionKey, ClusteringIndexFilter clusteringIndexFilter, IndexMetadata indexMetadata)Creates a new read command on a single partition.static SinglePartitionReadCommand.GroupSinglePartitionReadCommand.Group. create(TableMetadata metadata, int nowInSec, ColumnFilter columnFilter, RowFilter rowFilter, DataLimits limits, java.util.List<DecoratedKey> partitionKeys, ClusteringIndexFilter clusteringIndexFilter)static SinglePartitionReadQuerySinglePartitionReadQuery. create(TableMetadata metadata, int nowInSec, ColumnFilter columnFilter, RowFilter rowFilter, DataLimits limits, DecoratedKey partitionKey, ClusteringIndexFilter clusteringIndexFilter)Creates a new read query on a single partition.static SinglePartitionReadQuery.Group<? extends SinglePartitionReadQuery>SinglePartitionReadQuery. createGroup(TableMetadata metadata, int nowInSec, ColumnFilter columnFilter, RowFilter rowFilter, DataLimits limits, java.util.List<DecoratedKey> partitionKeys, ClusteringIndexFilter clusteringIndexFilter)abstract ReadCommandReadCommand.SelectionDeserializer. deserialize(DataInputPlus in, int version, boolean isDigest, int digestVersion, boolean acceptsTransient, TableMetadata metadata, int nowInSec, ColumnFilter columnFilter, RowFilter rowFilter, DataLimits limits, IndexMetadata index)java.lang.StringDataRange. toCQLString(TableMetadata metadata, RowFilter rowFilter)abstract java.lang.StringSlices. toCQLString(TableMetadata metadata, RowFilter rowFilter)Constructors in org.apache.cassandra.db with parameters of type RowFilter Constructor Description PartitionRangeReadCommand(boolean isDigest, int digestVersion, boolean acceptsTransient, TableMetadata metadata, int nowInSec, ColumnFilter columnFilter, RowFilter rowFilter, DataLimits limits, DataRange dataRange, IndexMetadata index, boolean trackWarnings)ReadCommand(ReadCommand.Kind kind, boolean isDigestQuery, int digestVersion, boolean acceptsTransient, TableMetadata metadata, int nowInSec, ColumnFilter columnFilter, RowFilter rowFilter, DataLimits limits, IndexMetadata index, boolean trackWarnings)SinglePartitionReadCommand(boolean isDigest, int digestVersion, boolean acceptsTransient, TableMetadata metadata, int nowInSec, ColumnFilter columnFilter, RowFilter rowFilter, DataLimits limits, DecoratedKey partitionKey, ClusteringIndexFilter clusteringIndexFilter, IndexMetadata index, boolean trackWarnings)VirtualTableSinglePartitionReadCommand(boolean isDigest, int digestVersion, boolean acceptsTransient, TableMetadata metadata, int nowInSec, ColumnFilter columnFilter, RowFilter rowFilter, DataLimits limits, DecoratedKey partitionKey, ClusteringIndexFilter clusteringIndexFilter, IndexMetadata index, boolean trackWarnings) -
Uses of RowFilter in org.apache.cassandra.db.filter
Fields in org.apache.cassandra.db.filter declared as RowFilter Modifier and Type Field Description static RowFilterRowFilter. NONEMethods in org.apache.cassandra.db.filter that return RowFilter Modifier and Type Method Description static RowFilterRowFilter. create()static RowFilterRowFilter. create(int capacity)RowFilterRowFilter.Serializer. deserialize(DataInputPlus in, int version, TableMetadata metadata)protected abstract RowFilterRowFilter. withNewExpressions(java.util.List<RowFilter.Expression> expressions)RowFilterRowFilter. without(RowFilter.Expression expression)Returns this filter but without the provided expression.RowFilterRowFilter. without(ColumnMetadata column, Operator op, java.nio.ByteBuffer value)Returns a copy of this filter but without the provided expression.RowFilterRowFilter. withoutExpressions()Methods in org.apache.cassandra.db.filter with parameters of type RowFilter Modifier and Type Method Description voidRowFilter.Serializer. serialize(RowFilter filter, DataOutputPlus out, int version)longRowFilter.Serializer. serializedSize(RowFilter filter, int version)java.lang.StringClusteringIndexFilter. toCQLString(TableMetadata metadata, RowFilter rowFilter)java.lang.StringClusteringIndexNamesFilter. toCQLString(TableMetadata metadata, RowFilter rowFilter)java.lang.StringClusteringIndexSliceFilter. toCQLString(TableMetadata metadata, RowFilter rowFilter) -
Uses of RowFilter in org.apache.cassandra.index
Methods in org.apache.cassandra.index that return RowFilter Modifier and Type Method Description RowFilterIndex. getPostIndexQueryFilter(RowFilter filter)Transform an initial RowFilter into the filter that will still need to applied to a set of Rows after the index has performed it's initial scan.Methods in org.apache.cassandra.index with parameters of type RowFilter Modifier and Type Method Description IndexSecondaryIndexManager. getBestIndexFor(RowFilter rowFilter)Called at query time to choose which (if any) of the registered index implementations to use for a given query.RowFilterIndex. getPostIndexQueryFilter(RowFilter filter)Transform an initial RowFilter into the filter that will still need to applied to a set of Rows after the index has performed it's initial scan.default booleanIndex. supportsReplicaFilteringProtection(RowFilter rowFilter)Tells whether this index supports replica fitering protection or not. -
Uses of RowFilter in org.apache.cassandra.index.internal
Methods in org.apache.cassandra.index.internal that return RowFilter Modifier and Type Method Description RowFilterCassandraIndex. getPostIndexQueryFilter(RowFilter filter)Methods in org.apache.cassandra.index.internal with parameters of type RowFilter Modifier and Type Method Description RowFilterCassandraIndex. getPostIndexQueryFilter(RowFilter filter) -
Uses of RowFilter in org.apache.cassandra.index.sasi
Methods in org.apache.cassandra.index.sasi that return RowFilter Modifier and Type Method Description RowFilterSASIIndex. getPostIndexQueryFilter(RowFilter filter)Methods in org.apache.cassandra.index.sasi with parameters of type RowFilter Modifier and Type Method Description RowFilterSASIIndex. getPostIndexQueryFilter(RowFilter filter)booleanSASIIndex. supportsReplicaFilteringProtection(RowFilter rowFilter) -
Uses of RowFilter in org.apache.cassandra.service.paxos.uncommitted
Methods in org.apache.cassandra.service.paxos.uncommitted that return RowFilter Modifier and Type Method Description RowFilterPaxosUncommittedIndex. getPostIndexQueryFilter(RowFilter filter)Methods in org.apache.cassandra.service.paxos.uncommitted with parameters of type RowFilter Modifier and Type Method Description RowFilterPaxosUncommittedIndex. getPostIndexQueryFilter(RowFilter filter)
-