class ActiveRecord::ConnectionAdapters::PostgreSQLAdapter

def construct_coder(row, coder_class)

Experimental RBS support (using type sampling data from the type_fusion project).

def construct_coder: (Hash row, Class coder_class) -> PG::TextDecoder::Integer

This signature was generated using 1 sample from 1 application.

def construct_coder(row, coder_class)
  return unless coder_class
  coder_class.new(oid: row["oid"].to_i, name: row["typname"])
end