Ticket #326 (closed defect: wontfix)
Ferret 0.11.4 (windows) german umlauts in queries aren't case insensitive anymore
| Reported by: | neongrau@… | Owned by: | somebody |
|---|---|---|---|
| Priority: | blocker | Milestone: | |
| Component: | component1 | Version: | |
| Keywords: | Cc: |
Description (last modified by dbalmain) (diff)
took me some hours to figure out it was a bug with the current version, after i downgraded to 0.10.9 it worked again.
here's a sample to reproduce the bug:
require 'rubygems' require 'ferret' i = Ferret::I.new i << 'Übersicht' i << 'übersicht' for q in [ 'Übersicht', 'übersicht', '*bersicht' ] puts "#{q} : #{i.search(q).total_hits} hit(s)" end
in 0.11.4 it returns: Übersicht : 1 hit(s) übersicht : 1 hit(s) *bersicht : 2 hit(s) in 0.10.9 it returns: Übersicht : 2 hit(s) übersicht : 2 hit(s) *bersicht : 2 hit(s)
Attachments
Change History
Note: See
TracTickets for help on using
tickets.
