class QueryBuilder::CQL::Modifiers::WhereClustered::Clause

The clause for adding to a statement

@api private

Public Instance Methods

to_s() click to toggle source
# File lib/query_builder/cql/modifiers/where_clustered.rb, line 38
def to_s
  [
    "(#{columns.join(", ")})",
    "(#{values.map { |value| cql_literal[value] }.join(", ")})"
  ].join(" = ")
end