Class: ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Integer

Inherits:
Type
  • Object
show all
Defined in:
lib/arjdbc/postgresql/base/oid.rb

Instance Method Summary collapse

Methods inherited from Type

#infinity, #simplified_type

Instance Method Details

#typeObject



203
# File 'lib/arjdbc/postgresql/base/oid.rb', line 203

def type; :integer end

#type_cast(value) ⇒ Object



205
206
207
208
209
# File 'lib/arjdbc/postgresql/base/oid.rb', line 205

def type_cast(value)
  return if value.nil?

  ConnectionAdapters::Column.value_to_integer value
end