class QueryBuilder::CQL::Modifiers::PrimaryKey::Clause

The clause for adding to a statement

@api private

Public Instance Methods

to_s() click to toggle source

Returns the CQL representation of the clause

@return [String]

# File lib/query_builder/cql/modifiers/primary_key.rb, line 41
def to_s
  ["PRIMARY KEY", "(#{columns.join(", ")})"].join(" ")
end