Unverified Commit e0f753d2 authored by Tao Feng's avatar Tao Feng Committed by GitHub

Allow search all tables under same db (#114)

parent 85bde2c1
...@@ -88,7 +88,13 @@ class ElasticsearchPublisher(Publisher): ...@@ -88,7 +88,13 @@ class ElasticsearchPublisher(Publisher):
"type": "text" "type": "text"
}, },
"database": { "database": {
"type": "text" "type": "text",
"analyzer": "simple",
"fields": {
"raw": {
"type": "keyword"
}
}
}, },
"key": { "key": {
"type": "keyword" "type": "keyword"
......
from setuptools import setup, find_packages from setuptools import setup, find_packages
__version__ = '1.3.8' __version__ = '1.3.9'
setup( setup(
......
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