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 | PG::TextDecoder::Timestamp)

This signature was generated using 2 samples from 2 applications.

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