瀏覽代碼

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)