class QueryBuilder::CQL::Modifiers::Superuser::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/superuser.rb, line 38
def to_s
  "#{maybe_no}SUPERUSER"
end

Private Instance Methods

maybe_no() click to toggle source
# File lib/query_builder/cql/modifiers/superuser.rb, line 44
def maybe_no
  "NO" if reverse
end