Uses of Class
org.apache.cassandra.cql3.statements.ModificationStatement
-
Packages that use ModificationStatement Package Description org.apache.cassandra.cql3.statements -
-
Uses of ModificationStatement in org.apache.cassandra.cql3.statements
Subclasses of ModificationStatement in org.apache.cassandra.cql3.statements Modifier and Type Class Description class
DeleteStatement
ADELETE
parsed from a CQL query statement.class
UpdateStatement
AnUPDATE
statement parsed from a CQL query statement.Methods in org.apache.cassandra.cql3.statements that return ModificationStatement Modifier and Type Method Description ModificationStatement
ModificationStatement.Parsed. prepare(VariableSpecifications bindVariables)
ModificationStatement
ModificationStatement.Parsed. prepare(ClientState state)
protected ModificationStatement
DeleteStatement.Parsed. prepareInternal(TableMetadata metadata, VariableSpecifications bindVariables, Conditions conditions, Attributes attrs)
protected abstract ModificationStatement
ModificationStatement.Parsed. prepareInternal(TableMetadata metadata, VariableSpecifications bindVariables, Conditions conditions, Attributes attrs)
protected ModificationStatement
UpdateStatement.ParsedInsert. prepareInternal(TableMetadata metadata, VariableSpecifications bindVariables, Conditions conditions, Attributes attrs)
protected ModificationStatement
UpdateStatement.ParsedInsertJson. prepareInternal(TableMetadata metadata, VariableSpecifications bindVariables, Conditions conditions, Attributes attrs)
protected ModificationStatement
UpdateStatement.ParsedUpdate. prepareInternal(TableMetadata metadata, VariableSpecifications bindVariables, Conditions conditions, Attributes attrs)
Methods in org.apache.cassandra.cql3.statements that return types with arguments of type ModificationStatement Modifier and Type Method Description java.util.List<ModificationStatement>
BatchStatement. getStatements()
Constructor parameters in org.apache.cassandra.cql3.statements with type arguments of type ModificationStatement Constructor Description BatchStatement(BatchStatement.Type type, VariableSpecifications bindVariables, java.util.List<ModificationStatement> statements, Attributes attrs)
Creates a new BatchStatement.
-