Uploaded image for project: 'Realm Java SDK'
  1. Realm Java SDK
  2. RJAVA-295

Support cyrillic for substring search

      Support cyrillic and maybe some other languages for beginsWith, contains, endsWith functions.

      Realm realm = Realm.getInstance(this);
      realm.beginTransaction();
      Person person = realm.createObject(Person.class);
      person.setName("ВЛадимир");
      realm.commitTransaction();
      
      RealmResults<Person> results = realm.where(Person.class)
                                          .beginsWith("name", "вл", false)
                                          .findAll(); 
      
      // results.size() returns 0 :(
      

      Sqlite also has the same bug. I am forced to use workaround with additional normalized column for that search functionality

            Assignee:
            Unassigned Unassigned
            Reporter:
            unitosyncbot Unito Sync Bot
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: