Flowdock
method

get_oid_type

Importance_0
get_oid_type(oid, fmod, column_name) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 763
        def get_oid_type(oid, fmod, column_name)
          type_map.fetch(oid, fmod) {
            warn "unknown OID #{oid}: failed to recognize type of '#{column_name}'. It will be treated as String."
            type_map[oid] = OID::Identity.new
          }
        end
Register or log in to add new notes.