Handle hstores in bound variables
# File lib/sequel/extensions/pg_hstore.rb, line 139 def bound_variable_arg(arg, conn) case arg when HStore arg.unquoted_literal when Hash HStore.new(arg).unquoted_literal else super end end