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 \% \\
def escape_wildcards(unescaped)
case ActiveRecord::Base.connection.adapter_name
when "SQLite"
unescaped
else
when "Mysql2", "PostgreSQL"
# Necessary for PostgreSQL and MySQL
unescaped.to_s.gsub(/([\\|\%|.])/, '\\\\\\1')
else
unescaped
end
end
end