Module: Cassandra::Errors::ValidationError

Includes:
Cassandra::Error
Included in:
ConfigurationError, InvalidError, SyntaxError, UnauthorizedError, UnpreparedError
Defined in:
lib/cassandra/errors.rb

Overview

Mixed into all request validation errors.

Instance Method Summary collapse

Instance Method Details

#execution_infoCassandra::Execution::Info

Query execution information, such as number of retries and all tried hosts, etc.



607
608
609
610
611
612
613
614
615
616
617
# File 'lib/cassandra/errors.rb', line 607

def execution_info
  @info ||= Execution::Info.new(@payload,
                                @warnings,
                                @keyspace,
                                @statement,
                                @options,
                                @hosts,
                                @consistency,
                                @retries,
                                nil)
end