Reset the conversion procs if using the native postgres adapter.
# File lib/sequel/extensions/pg_hstore.rb, line 132 def self.extended(db) db.reset_conversion_procs if db.respond_to?(:reset_conversion_procs) end
Handle hstores in bound variables
# File lib/sequel/extensions/pg_hstore.rb, line 137 def bound_variable_arg(arg, conn) case arg when HStore arg.unquoted_literal when Hash HStore.new(arg).unquoted_literal else super end end