class ActiveRecord::ConnectionAdapters::RedshiftAdapter::OID::Hstore

Public Instance Methods

type_cast(value) click to toggle source
# File lib/active_record/connection_adapters/redshift/oid.rb, line 227
def type_cast(value)
  return if value.nil?

  ConnectionAdapters::RedshiftColumn.string_to_hstore value
end