We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"_source":["title", "price"]
original SQL :
select title, price from products where title = '%A%'
expect like that :
{ "_source": [ "title", "price", ], "query": { "bool": { "must": [ { "match_phrase": { "title": { "query": "%A%" } } } ] } }, "from": 0, "size": 1 }
actually, elasticsql.Convert(sql) didn't generate "_source":["title", "price"]
The text was updated successfully, but these errors were encountered:
@gudigudi ,想不起来这个当时为啥没支持了。。会有啥影响么
Sorry, something went wrong.
sql支持只select特定字段,es的查询也支持。实际使用中有这类需求的。
No branches or pull requests
original SQL :
expect like that :
actually, elasticsql.Convert(sql) didn't generate
"_source":["title", "price"]
The text was updated successfully, but these errors were encountered: