class Cequel::Type::Int

`int` columns store 32-bit integer values

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

CQL3 data type documentation

Public Instance Methods

cast(value) click to toggle source
# File lib/cequel/type.rb, line 326
def cast(value)
  Integer(value)
end
internal_names() click to toggle source
# File lib/cequel/type.rb, line 322
def internal_names
  ['org.apache.cassandra.db.marshal.Int32Type']
end