class Cassandra::Statements::Void
This statement is passed to {Cassandra::LoadBalancing::Policy#plan} when establishing connections and preparing statements
Public Instance Methods
accept(client, options)
click to toggle source
@private
# File lib/cassandra/statements/void.rb 27 def accept(client, options) 28 nil 29 end
cql()
click to toggle source
Returns nothing @return [nil] there is no cql for the void statement
# File lib/cassandra/statements/void.rb 33 def cql 34 nil 35 end