Class: ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::TypeMap

Inherits:
Object
  • Object
show all
Defined in:
lib/active_record/connection_adapters/postgresql/oid.rb

Instance Method Summary collapse

Constructor Details

#initializeTypeMap

Returns a new instance of TypeMap.



282
283
284
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 282

def initialize
  @mapping = {}
end

Instance Method Details

#[](oid) ⇒ Object



290
291
292
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 290

def [](oid)
  @mapping[oid]
end

#[]=(oid, type) ⇒ Object



286
287
288
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 286

def []=(oid, type)
  @mapping[oid] = type
end

#clearObject



294
295
296
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 294

def clear
  @mapping.clear
end

#fetch(ftype, fmod) ⇒ Object



302
303
304
305
306
307
308
309
310
311
312
313
314
315
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 302

def fetch(ftype, fmod)
  # The type for the numeric depends on the width of the field,
  # so we'll do something special here.
  #
  # When dealing with decimal columns:
  #
  # places after decimal  = fmod - 4 & 0xffff
  # places before decimal = (fmod - 4) >> 16 & 0xffff
  if ftype == 1700 && (fmod - 4 & 0xffff).zero?
    ftype = 23
  end

  @mapping.fetch(ftype) { |oid| yield oid, fmod }
end

#key?(oid) ⇒ Boolean

Returns:



298
299
300
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 298

def key?(oid)
  @mapping.key? oid
end