class Cequel::Type::Ascii
`ascii` columns store 7-bit ASCII character data
@see cassandra.apache.org/doc/latest/cql/types.html
CQL3 data type documentation
Public Instance Methods
compatible_types()
click to toggle source
Calls superclass method
Cequel::Type::Base#compatible_types
# File lib/cequel/type.rb, line 201 def compatible_types super + [Type[:text]] end
Private Instance Methods
encoding()
click to toggle source
# File lib/cequel/type.rb, line 207 def encoding 'US-ASCII' end