class Cequel::Type::Text

`text` columns store UTF-8 character data. They are also known as `varchar` columns; the names can be used interchangeably. Text columns do not have a length limit

@see cassandra.apache.org/doc/latest/cql/types.html

CQL3 data type documentation

Public Instance Methods

cql_aliases() click to toggle source
# File lib/cequel/type.rb, line 367
def cql_aliases
  [:varchar]
end
internal_names() click to toggle source
# File lib/cequel/type.rb, line 363
def internal_names
  ['org.apache.cassandra.db.marshal.UTF8Type']
end

Private Instance Methods

encoding() click to toggle source
# File lib/cequel/type.rb, line 373
def encoding
  'UTF-8'
end