Class QueryHandler.Prepared

java.lang.Object
org.apache.cassandra.cql3.QueryHandler.Prepared
Enclosing interface:
QueryHandler

public static class QueryHandler.Prepared extends Object
  • Field Details

    • pstmntSize

      public volatile int pstmntSize
    • statement

      public final CQLStatement statement
    • resultMetadataId

      public final MD5Digest resultMetadataId
    • timestamp

      public final long timestamp
      Timestamp of when this prepared statement was created. Used in QueryProcessor.preparedStatements cache to ensure that the deletion timestamp always succeeds the insert timestamp.
    • rawCQLStatement

      public final String rawCQLStatement
      Contains the CQL statement source if the statement has been "regularly" perpared via QueryHandler.prepare(String, ClientState, Map). Other usages of this class may or may not contain the CQL statement source.
    • keyspace

      public final String keyspace
    • fullyQualified

      public final boolean fullyQualified
  • Constructor Details

    • Prepared

      public Prepared(CQLStatement statement, String rawCQLStatement, boolean fullyQualified, String keyspace)