Handle conversions of PostgreSQL array instances
Set the method that will return the correct conversion proc for elements of this array.
[Source]
# File lib/sequel/adapters/jdbc/postgresql.rb, line 118 118: def initialize(meth) 119: @conversion_proc_method = meth 120: @conversion_proc = nil 121: end
Convert Java::OrgPostgresqlJdbc4::Jdbc4Array to ruby arrays
# File lib/sequel/adapters/jdbc/postgresql.rb, line 124 124: def call(v) 125: _pg_array(v.array) 126: end
[Validate]