class QueryBuilder::CQL::Statements::Batch
Describes the ‘BATCH’ CQL3 statement
Public Instance Methods
to_s()
click to toggle source
Builds the statement
@return [String]
# File lib/query_builder/cql/statements/batch.rb, line 20 def to_s cql[ "BEGIN", maybe_type, "BATCH", maybe_using, maybe_statements, "APPLY BATCH" ] end