Browse Source

HUE-7827 [search] Switch to fuzzy matching for autocomplete term search

Romain Rigaux 8 năm trước cách đây
mục cha
commit
2e9e60f
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      desktop/libs/dashboard/src/dashboard/api.py

+ 1 - 1
desktop/libs/dashboard/src/dashboard/api.py

@@ -257,7 +257,7 @@ def get_terms(request):
       # maxcount
     }
     if analysis['terms']['prefix']:
-      properties['terms.regex'] = '^%(prefix)s.*' % analysis['terms'] # Case insensitive 'terms.prefix'
+      properties['terms.regex'] = '.*%(prefix)s.*' % analysis['terms'] # Use regexp instead of case sensitive 'terms.prefix'
       properties['terms.regex.flag'] = 'case_insensitive'
 
     result['terms'] = SolrApi(SOLR_URL.get(), request.user).terms(collection['name'], field, properties)