class QueryBuilder::CQL::Modifiers::Column::Clause
The clause for adding to a statement
@api private
Public Instance Methods
to_s()
click to toggle source
@private
# File lib/query_builder/cql/modifiers/column.rb, line 43 def to_s [name, type_name, maybe_static].compact.join(" ") end
Private Instance Methods
maybe_static()
click to toggle source
# File lib/query_builder/cql/modifiers/column.rb, line 49 def maybe_static "STATIC" if static end