changed wildcard escape logic

This commit is contained in:
Joe Martin 2014-06-04 01:28:40 -04:00
parent c1c8edfe76
commit b6d2547a0d
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