Uses of Class
org.apache.cassandra.cql3.ColumnIdentifier
-
-
Uses of ColumnIdentifier in org.apache.cassandra.cql3
Fields in org.apache.cassandra.cql3 declared as ColumnIdentifier Modifier and Type Field Description static ColumnIdentifier
Json. JSON_COLUMN_ID
ColumnIdentifier
ColumnSpecification. name
Methods in org.apache.cassandra.cql3 that return ColumnIdentifier Modifier and Type Method Description ColumnIdentifier
Operation.ColumnDeletion. affectedColumn()
ColumnIdentifier
Operation.ElementDeletion. affectedColumn()
ColumnIdentifier
Operation.FieldDeletion. affectedColumn()
ColumnIdentifier
Operation.RawDeletion. affectedColumn()
The name of the column affected by this delete operation.ColumnIdentifier
ColumnIdentifier. clone(ByteBufferCloner cloner)
ColumnIdentifier
SingleColumnRelation. getEntity()
static ColumnIdentifier
ColumnIdentifier. getInterned(java.lang.String rawText, boolean keepCase)
static ColumnIdentifier
ColumnIdentifier. getInterned(java.nio.ByteBuffer bytes, AbstractType<?> type)
static ColumnIdentifier
ColumnIdentifier. getInterned(AbstractType<?> type, java.nio.ByteBuffer bytes, java.lang.String text)
Methods in org.apache.cassandra.cql3 that return types with arguments of type ColumnIdentifier Modifier and Type Method Description java.util.List<ColumnIdentifier>
MultiColumnRelation. getEntities()
static java.util.Map<ColumnIdentifier,Term>
Json. parseJson(java.lang.String jsonString, java.util.Collection<ColumnMetadata> expectedReceivers)
Given a JSON string, return a map of columns to their values for the insert.Methods in org.apache.cassandra.cql3 with parameters of type ColumnIdentifier Modifier and Type Method Description CqlBuilder
CqlBuilder. append(ColumnIdentifier column)
int
ColumnIdentifier. compareTo(ColumnIdentifier that)
static SingleColumnRelation
SingleColumnRelation. createInRelation(ColumnIdentifier entity, java.util.List<Term.Raw> inValues)
Term
QueryOptions. getJsonColumnValue(int bindIndex, ColumnIdentifier columnName, java.util.Collection<ColumnMetadata> expectedReceivers)
Returns the term corresponding to columncolumnName
in the JSON value of bind indexbindIndex
.Relation
MultiColumnRelation. renameIdentifier(ColumnIdentifier from, ColumnIdentifier to)
abstract Relation
Relation. renameIdentifier(ColumnIdentifier from, ColumnIdentifier to)
Renames an identifier in this Relation, if applicable.Relation
SingleColumnRelation. renameIdentifier(ColumnIdentifier from, ColumnIdentifier to)
Relation
TokenRelation. renameIdentifier(ColumnIdentifier from, ColumnIdentifier to)
WhereClause
WhereClause. renameIdentifier(ColumnIdentifier from, ColumnIdentifier to)
Renames identifiers in all relationsColumnSpecification
ColumnSpecification. withAlias(ColumnIdentifier alias)
Returns a newColumnSpecification
for the same column but with the specified alias.Method parameters in org.apache.cassandra.cql3 with type arguments of type ColumnIdentifier Modifier and Type Method Description static MultiColumnRelation
MultiColumnRelation. createInRelation(java.util.List<ColumnIdentifier> entities, java.util.List<? extends Term.MultiColumnRaw> inValues)
Creates a multi-column IN relation with a list of IN values or markers.static MultiColumnRelation
MultiColumnRelation. createNonInRelation(java.util.List<ColumnIdentifier> entities, Operator relationType, Term.MultiColumnRaw valuesOrMarker)
Creates a multi-column EQ, LT, LTE, GT, or GTE relation.static MultiColumnRelation
MultiColumnRelation. createSingleMarkerInRelation(java.util.List<ColumnIdentifier> entities, Tuples.INRaw inMarker)
Creates a multi-column IN relation with a marker for the IN values.void
CQLStatement.Raw. setBindVariables(java.util.List<ColumnIdentifier> variables)
Constructors in org.apache.cassandra.cql3 with parameters of type ColumnIdentifier Constructor Description ColumnDeletion(ColumnIdentifier id)
ColumnSpecification(java.lang.String ksName, java.lang.String cfName, ColumnIdentifier name, AbstractType<?> type)
ElementDeletion(ColumnIdentifier id, Term.Raw element)
FieldDeletion(ColumnIdentifier id, FieldIdentifier field)
SingleColumnRelation(ColumnIdentifier entity, Operator type, Term.Raw value)
Creates a new relation.SingleColumnRelation(ColumnIdentifier entity, Term.Raw mapKey, Operator type, Term.Raw value)
Creates a new relation.UTName(ColumnIdentifier ksName, ColumnIdentifier utName)
Constructor parameters in org.apache.cassandra.cql3 with type arguments of type ColumnIdentifier Constructor Description TokenRelation(java.util.List<ColumnIdentifier> entities, Operator type, Term.Raw value)
VariableSpecifications(java.util.List<ColumnIdentifier> variableNames)
-
Uses of ColumnIdentifier in org.apache.cassandra.cql3.functions
Fields in org.apache.cassandra.cql3.functions with type parameters of type ColumnIdentifier Modifier and Type Field Description protected java.util.List<ColumnIdentifier>
UDFunction. argNames
Methods in org.apache.cassandra.cql3.functions that return types with arguments of type ColumnIdentifier Modifier and Type Method Description java.util.List<ColumnIdentifier>
UDFunction. argNames()
Method parameters in org.apache.cassandra.cql3.functions with type arguments of type ColumnIdentifier Modifier and Type Method Description static UDFunction
UDFunction. create(FunctionName name, java.util.List<ColumnIdentifier> argNames, java.util.List<AbstractType<?>> argTypes, AbstractType<?> returnType, boolean calledOnNullInput, java.lang.String language, java.lang.String body)
static UDFunction
UDFunction. createBrokenFunction(FunctionName name, java.util.List<ColumnIdentifier> argNames, java.util.List<AbstractType<?>> argTypes, AbstractType<?> returnType, boolean calledOnNullInput, java.lang.String language, java.lang.String body, InvalidRequestException reason)
It can happen that a function has been declared (is listed in the scheam) but cannot be loaded (maybe only on some nodes).static UDFunction
UDFunction. tryCreate(FunctionName name, java.util.List<ColumnIdentifier> argNames, java.util.List<AbstractType<?>> argTypes, AbstractType<?> returnType, boolean calledOnNullInput, java.lang.String language, java.lang.String body)
Constructor parameters in org.apache.cassandra.cql3.functions with type arguments of type ColumnIdentifier Constructor Description UDFunction(FunctionName name, java.util.List<ColumnIdentifier> argNames, java.util.List<AbstractType<?>> argTypes, DataType[] argDataTypes, AbstractType<?> returnType, DataType returnDataType, boolean calledOnNullInput, java.lang.String language, java.lang.String body)
UDFunction(FunctionName name, java.util.List<ColumnIdentifier> argNames, java.util.List<AbstractType<?>> argTypes, AbstractType<?> returnType, boolean calledOnNullInput, java.lang.String language, java.lang.String body)
-
Uses of ColumnIdentifier in org.apache.cassandra.cql3.selection
Fields in org.apache.cassandra.cql3.selection declared as ColumnIdentifier Modifier and Type Field Description ColumnIdentifier
RawSelector. alias
Constructors in org.apache.cassandra.cql3.selection with parameters of type ColumnIdentifier Constructor Description RawSelector(Selectable.Raw selectable, ColumnIdentifier alias)
-
Uses of ColumnIdentifier in org.apache.cassandra.cql3.statements
Fields in org.apache.cassandra.cql3.statements with type parameters of type ColumnIdentifier Modifier and Type Field Description java.util.List<ColumnIdentifier>
SelectStatement.Parameters. groups
java.util.Map<ColumnIdentifier,java.lang.Boolean>
SelectStatement.Parameters. orderings
Methods in org.apache.cassandra.cql3.statements that return types with arguments of type ColumnIdentifier Modifier and Type Method Description java.util.List<Pair<ColumnIdentifier,ColumnCondition.Raw>>
ModificationStatement.Parsed. getConditions()
Constructor parameters in org.apache.cassandra.cql3.statements with type arguments of type ColumnIdentifier Constructor Description Parameters(java.util.Map<ColumnIdentifier,java.lang.Boolean> orderings, java.util.List<ColumnIdentifier> groups, boolean isDistinct, boolean allowFiltering, boolean isJson)
Parameters(java.util.Map<ColumnIdentifier,java.lang.Boolean> orderings, java.util.List<ColumnIdentifier> groups, boolean isDistinct, boolean allowFiltering, boolean isJson)
Parsed(QualifiedName name, StatementType type, Attributes.Raw attrs, java.util.List<Pair<ColumnIdentifier,ColumnCondition.Raw>> conditions, boolean ifNotExists, boolean ifExists)
ParsedInsert(QualifiedName name, Attributes.Raw attrs, java.util.List<ColumnIdentifier> columnNames, java.util.List<Term.Raw> columnValues, boolean ifNotExists)
A parsedINSERT
statement.ParsedUpdate(QualifiedName name, Attributes.Raw attrs, java.util.List<Pair<ColumnIdentifier,Operation.RawUpdate>> updates, WhereClause whereClause, java.util.List<Pair<ColumnIdentifier,ColumnCondition.Raw>> conditions, boolean ifExists)
Creates a new UpdateStatement from a column family name, columns map, consistency level, and key term. -
Uses of ColumnIdentifier in org.apache.cassandra.cql3.statements.schema
Fields in org.apache.cassandra.cql3.statements.schema declared as ColumnIdentifier Modifier and Type Field Description ColumnIdentifier
IndexTarget. column
Methods in org.apache.cassandra.cql3.statements.schema with parameters of type ColumnIdentifier Modifier and Type Method Description void
AlterTableStatement.Raw. add(ColumnIdentifier name, CQL3Type.Raw type, boolean isStatic)
void
CreateTableStatement.Raw. addColumn(ColumnIdentifier column, CQL3Type.Raw type, boolean isStatic)
void
AlterTableStatement.Raw. alter(ColumnIdentifier name, CQL3Type.Raw type)
void
AlterTableStatement.Raw. drop(ColumnIdentifier name)
void
CreateTableStatement.Raw. extendClusteringOrder(ColumnIdentifier column, boolean ascending)
void
CreateViewStatement.Raw. extendClusteringOrder(ColumnIdentifier column, boolean ascending)
static IndexTarget.Raw
IndexTarget.Raw. fullCollection(ColumnIdentifier c)
static IndexTarget.Raw
IndexTarget.Raw. keysAndValuesOf(ColumnIdentifier c)
static IndexTarget.Raw
IndexTarget.Raw. keysOf(ColumnIdentifier c)
void
CreateTableStatement.Raw. markClusteringColumn(ColumnIdentifier column)
void
CreateViewStatement.Raw. markClusteringColumn(ColumnIdentifier column)
void
AlterTableStatement.Raw. rename(ColumnIdentifier from, ColumnIdentifier to)
void
CreateTableStatement.Raw. setPartitionKeyColumn(ColumnIdentifier column)
static IndexTarget.Raw
IndexTarget.Raw. simpleIndexOn(ColumnIdentifier c)
static IndexTarget.Raw
IndexTarget.Raw. valuesOf(ColumnIdentifier c)
Method parameters in org.apache.cassandra.cql3.statements.schema with type arguments of type ColumnIdentifier Modifier and Type Method Description void
CreateTableStatement.Raw. setPartitionKeyColumns(java.util.List<ColumnIdentifier> columns)
void
CreateViewStatement.Raw. setPartitionKeyColumns(java.util.List<ColumnIdentifier> columns)
Constructors in org.apache.cassandra.cql3.statements.schema with parameters of type ColumnIdentifier Constructor Description IndexTarget(ColumnIdentifier column, IndexTarget.Type type)
Constructor parameters in org.apache.cassandra.cql3.statements.schema with type arguments of type ColumnIdentifier Constructor Description CreateFunctionStatement(java.lang.String keyspaceName, java.lang.String functionName, java.util.List<ColumnIdentifier> argumentNames, java.util.List<CQL3Type.Raw> rawArgumentTypes, CQL3Type.Raw rawReturnType, boolean calledOnNullInput, java.lang.String language, java.lang.String body, boolean orReplace, boolean ifNotExists)
CreateTableStatement(java.lang.String keyspaceName, java.lang.String tableName, java.util.Map<ColumnIdentifier,CQL3Type.Raw> rawColumns, java.util.Set<ColumnIdentifier> staticColumns, java.util.List<ColumnIdentifier> partitionKeyColumns, java.util.List<ColumnIdentifier> clusteringColumns, java.util.LinkedHashMap<ColumnIdentifier,java.lang.Boolean> clusteringOrder, TableAttributes attrs, boolean ifNotExists, boolean useCompactStorage)
CreateTableStatement(java.lang.String keyspaceName, java.lang.String tableName, java.util.Map<ColumnIdentifier,CQL3Type.Raw> rawColumns, java.util.Set<ColumnIdentifier> staticColumns, java.util.List<ColumnIdentifier> partitionKeyColumns, java.util.List<ColumnIdentifier> clusteringColumns, java.util.LinkedHashMap<ColumnIdentifier,java.lang.Boolean> clusteringOrder, TableAttributes attrs, boolean ifNotExists, boolean useCompactStorage)
CreateTableStatement(java.lang.String keyspaceName, java.lang.String tableName, java.util.Map<ColumnIdentifier,CQL3Type.Raw> rawColumns, java.util.Set<ColumnIdentifier> staticColumns, java.util.List<ColumnIdentifier> partitionKeyColumns, java.util.List<ColumnIdentifier> clusteringColumns, java.util.LinkedHashMap<ColumnIdentifier,java.lang.Boolean> clusteringOrder, TableAttributes attrs, boolean ifNotExists, boolean useCompactStorage)
CreateTableStatement(java.lang.String keyspaceName, java.lang.String tableName, java.util.Map<ColumnIdentifier,CQL3Type.Raw> rawColumns, java.util.Set<ColumnIdentifier> staticColumns, java.util.List<ColumnIdentifier> partitionKeyColumns, java.util.List<ColumnIdentifier> clusteringColumns, java.util.LinkedHashMap<ColumnIdentifier,java.lang.Boolean> clusteringOrder, TableAttributes attrs, boolean ifNotExists, boolean useCompactStorage)
CreateViewStatement(java.lang.String keyspaceName, java.lang.String tableName, java.lang.String viewName, java.util.List<RawSelector> rawColumns, java.util.List<ColumnIdentifier> partitionKeyColumns, java.util.List<ColumnIdentifier> clusteringColumns, WhereClause whereClause, java.util.LinkedHashMap<ColumnIdentifier,java.lang.Boolean> clusteringOrder, TableAttributes attrs, boolean ifNotExists)
Raw(FunctionName name, java.util.List<ColumnIdentifier> argumentNames, java.util.List<CQL3Type.Raw> rawArgumentTypes, CQL3Type.Raw rawReturnType, boolean calledOnNullInput, java.lang.String language, java.lang.String body, boolean orReplace, boolean ifNotExists)
-
Uses of ColumnIdentifier in org.apache.cassandra.db
Fields in org.apache.cassandra.db with type parameters of type ColumnIdentifier Modifier and Type Field Description protected java.util.Set<ColumnIdentifier>
AbstractReadCommandBuilder. columns
-
Uses of ColumnIdentifier in org.apache.cassandra.db.filter
Methods in org.apache.cassandra.db.filter that return types with arguments of type ColumnIdentifier Modifier and Type Method Description protected com.google.common.collect.SortedSetMultimap<ColumnIdentifier,ColumnSubselection>
ColumnFilter.SelectionColumnFilter. subSelections()
protected abstract com.google.common.collect.SortedSetMultimap<ColumnIdentifier,ColumnSubselection>
ColumnFilter. subSelections()
Returns the sub-selections ornull
if there are none.protected com.google.common.collect.SortedSetMultimap<ColumnIdentifier,ColumnSubselection>
ColumnFilter.WildCardColumnFilter. subSelections()
Method parameters in org.apache.cassandra.db.filter with type arguments of type ColumnIdentifier Modifier and Type Method Description static ColumnFilter.SelectionColumnFilter
ColumnFilter.SelectionColumnFilter. newInstance(org.apache.cassandra.db.filter.ColumnFilter.FetchingStrategy fetchingStrategy, TableMetadata metadata, RegularAndStaticColumns queried, com.google.common.collect.SortedSetMultimap<ColumnIdentifier,ColumnSubselection> subSelections)
Constructor parameters in org.apache.cassandra.db.filter with type arguments of type ColumnIdentifier Constructor Description SelectionColumnFilter(org.apache.cassandra.db.filter.ColumnFilter.FetchingStrategy fetchingStrategy, RegularAndStaticColumns queried, RegularAndStaticColumns fetched, com.google.common.collect.SortedSetMultimap<ColumnIdentifier,ColumnSubselection> subSelections)
Creates aColumnFilter
for queries with selected columns. -
Uses of ColumnIdentifier in org.apache.cassandra.schema
Methods in org.apache.cassandra.schema that return types with arguments of type ColumnIdentifier Modifier and Type Method Description static java.util.Collection<ColumnIdentifier>
ColumnMetadata. toIdentifiers(java.util.Collection<ColumnMetadata> definitions)
Converts the specified column definitions into column identifiers.Constructors in org.apache.cassandra.schema with parameters of type ColumnIdentifier Constructor Description ColumnMetadata(java.lang.String ksName, java.lang.String cfName, ColumnIdentifier name, AbstractType<?> type, int position, ColumnMetadata.Kind kind)
-