module QueryBuilder::CQL::Modifiers::Unlogged

Provides UNLOGGED batch type

Public Instance Methods

unlogged() click to toggle source

Adds a clause to the statement

@return [QueryBuilder::Core::Statement] updated statement

# File lib/query_builder/cql/modifiers/unlogged.rb, line 15
def unlogged
  self << Clause.new
end

Private Instance Methods

maybe_type() click to toggle source
# File lib/query_builder/cql/modifiers/unlogged.rb, line 21
def maybe_type
  clauses(:type)
end