class PG::TypeMapByColumn

def inspect

def inspect
	type_strings = coders.map{|c| c ? c.inspect_short : 'nil' }
	"#<#{self.class} #{type_strings.join(' ')}>"
end

def oids

Returns the type oids of the assigned coders.
def oids
	coders.map{|c| c.oid if c }
end