Package org.apache.cassandra.cql3
Class QueryHandler.Prepared
java.lang.Object
org.apache.cassandra.cql3.QueryHandler.Prepared
- Enclosing interface:
- QueryHandler
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal booleanfinal Stringintfinal StringContains the CQL statement source if the statement has been "regularly" perpared viaQueryHandler.prepare(String, ClientState, Map).final MD5Digestfinal CQLStatementfinal longTimestamp of when this prepared statement was created. -
Constructor Summary
ConstructorsConstructorDescriptionPrepared(CQLStatement statement, String rawCQLStatement, boolean fullyQualified, String keyspace) -
Method Summary
-
Field Details
-
pstmntSize
public volatile int pstmntSize -
statement
-
resultMetadataId
-
timestamp
public final long timestampTimestamp of when this prepared statement was created. Used in QueryProcessor.preparedStatements cache to ensure that the deletion timestamp always succeeds the insert timestamp. -
rawCQLStatement
Contains the CQL statement source if the statement has been "regularly" perpared viaQueryHandler.prepare(String, ClientState, Map). Other usages of this class may or may not contain the CQL statement source. -
keyspace
-
fullyQualified
public final boolean fullyQualified
-
-
Constructor Details
-
Prepared
public Prepared(CQLStatement statement, String rawCQLStatement, boolean fullyQualified, String keyspace)
-