Преглед изворни кода

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

Romain Rigaux пре 8 година
родитељ
комит
2e9e60f
1 измењених фајлова са 1 додато и 1 уклоњено
  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)