Unverified Commit 5dca1c24 authored by Tao Feng's avatar Tao Feng Committed by GitHub

Fix ES mapping typo (#267)

parent 69ea36a6
......@@ -43,7 +43,7 @@ TABLE_ELASTICSEARCH_INDEX_MAPPING = textwrap.dedent(
"description": {
"type": "text",
"analyzer": "simple",
"search_analyzer": "whitespace",
"search_analyzer": "whitespace"
},
"column_names": {
"type":"text",
......@@ -57,7 +57,7 @@ TABLE_ELASTICSEARCH_INDEX_MAPPING = textwrap.dedent(
"column_descriptions": {
"type": "text",
"analyzer": "simple",
"search_analyzer": "whitespace",
"search_analyzer": "whitespace"
},
"tags": {
"type": "keyword"
......
......@@ -2,7 +2,7 @@ import os
from setuptools import setup, find_packages
__version__ = '2.5.15'
__version__ = '2.5.16'
requirements_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'requirements.txt')
with open(requirements_path) as requirements_file:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment