Merge pull request #382 from alkalinecoffee/master

Wildcard escaping with other databases
This commit is contained in:
Jon Atack 2014-06-04 22:11:52 +02:00
commit cd674accb1
1 changed files with 3 additions and 3 deletions

View File

@ -89,11 +89,11 @@ module Ransack
# replace % \ to \% \\ # replace % \ to \% \\
def escape_wildcards(unescaped) def escape_wildcards(unescaped)
case ActiveRecord::Base.connection.adapter_name case ActiveRecord::Base.connection.adapter_name
when "SQLite" when "Mysql2", "PostgreSQL"
unescaped
else
# Necessary for PostgreSQL and MySQL # Necessary for PostgreSQL and MySQL
unescaped.to_s.gsub(/([\\|\%|.])/, '\\\\\\1') unescaped.to_s.gsub(/([\\|\%|.])/, '\\\\\\1')
else
unescaped
end end
end end
end end