Return PostgreSQL array types as ruby Arrays instead of JDBC PostgreSQL driver-specific array type. Only used if the database does not have a conversion proc for the type.
# File lib/sequel/adapters/jdbc/postgresql.rb, line 20 def self.RubyPGArray(r, i) if v = r.getArray(i) v.array.to_ary end end
Return PostgreSQL hstore types as ruby Hashes instead of Java HashMaps. Only used if the database does not have a conversion proc for the type.
# File lib/sequel/adapters/jdbc/postgresql.rb, line 29 def self.RubyPGHstore(r, i) if v = r.getObject(i) v.to_hash end end