org.apache.cassandra.cql3.statements
Class ModificationStatement
java.lang.Object
org.apache.cassandra.cql3.statements.ParsedStatement
org.apache.cassandra.cql3.statements.CFStatement
org.apache.cassandra.cql3.statements.ModificationStatement
- All Implemented Interfaces:
- CQLStatement
- Direct Known Subclasses:
- BatchStatement, DeleteStatement, UpdateStatement
public abstract class ModificationStatement
- extends CFStatement
- implements CQLStatement
Abstract class for statements that apply on a given column family.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
defaultConsistency
public static final ConsistencyLevel defaultConsistency
ModificationStatement
public ModificationStatement(CFName name,
Attributes attrs)
ModificationStatement
public ModificationStatement(CFName name,
ConsistencyLevel cLevel,
java.lang.Long timestamp,
int timeToLive)
checkAccess
public void checkAccess(ClientState state)
throws InvalidRequestException,
UnauthorizedException
- Description copied from interface:
CQLStatement
- Perform any access verification necessary for the statement.
- Specified by:
checkAccess
in interface CQLStatement
- Parameters:
state
- the current client state
- Throws:
InvalidRequestException
UnauthorizedException
validate
public void validate(ClientState state)
throws InvalidRequestException
- Description copied from interface:
CQLStatement
- Perform additional validation required by the statment.
To be overriden by subclasses if needed.
- Specified by:
validate
in interface CQLStatement
- Parameters:
state
- the current client state
- Throws:
InvalidRequestException
execute
public ResultMessage execute(ClientState state,
java.util.List<java.nio.ByteBuffer> variables)
throws RequestExecutionException,
RequestValidationException
- Description copied from interface:
CQLStatement
- Execute the statement and return the resulting result or null if there is no result.
- Specified by:
execute
in interface CQLStatement
- Parameters:
state
- the current client statevariables
- the values for bounded variables. The implementation
can assume that each bound term have a corresponding value.
- Throws:
RequestExecutionException
RequestValidationException
getConsistencyLevel
public ConsistencyLevel getConsistencyLevel()
isSetConsistencyLevel
public boolean isSetConsistencyLevel()
- True if an explicit consistency level was parsed from the statement.
- Returns:
- true if a consistency was parsed, false otherwise.
getTimestamp
public long getTimestamp(ClientState clientState)
setTimestamp
public void setTimestamp(long timestamp)
isSetTimestamp
public boolean isSetTimestamp()
getTimeToLive
public int getTimeToLive()
readRows
public java.util.Map<java.nio.ByteBuffer,ColumnGroupMap> readRows(java.util.List<java.nio.ByteBuffer> keys,
ColumnNameBuilder builder,
CompositeType composite)
throws RequestExecutionException,
RequestValidationException
- Throws:
RequestExecutionException
RequestValidationException
getMutations
public abstract java.util.List<IMutation> getMutations(ClientState clientState,
java.util.List<java.nio.ByteBuffer> variables)
throws RequestExecutionException,
RequestValidationException
- Convert statement into a list of mutations to apply on the server
- Parameters:
clientState
- current client statusvariables
- value for prepared statement markers
- Returns:
- list of the mutations
- Throws:
InvalidRequestException
- on invalid requests
RequestExecutionException
RequestValidationException
prepare
public abstract ParsedStatement.Prepared prepare(CFDefinition.Name[] boundNames)
throws InvalidRequestException
- Throws:
InvalidRequestException
Copyright © 2012 The Apache Software Foundation