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
text
sql/opensearch/src/main/java/org/opensearch/sql/opensearch/storage/script/filter/lucene/LuceneQuery.java
Lines 227 to 240 in 34be98d
sql/opensearch/src/main/java/org/opensearch/sql/opensearch/storage/script/ScriptUtils.java
Lines 20 to 29 in 34be98d
convertTextToKeyword
fields
{ "mappings": { "properties": { "motto": { "type": "text", "fields": { "words": { "type": "keyword", "ignore_above": 256 } } } } } }
Use mapping info to properly set fields name - words in the given sample.
words
Add limitation section to documentation and return error on querying such kind of fields (aka columns).
Related to #794, #1038 and #1112.
The text was updated successfully, but these errors were encountered:
OpenSearchDataType
No branches or pull requests
Is your feature request related to a problem?
sql/opensearch/src/main/java/org/opensearch/sql/opensearch/storage/script/filter/lucene/LuceneQuery.java
Lines 227 to 240 in 34be98d
sql/opensearch/src/main/java/org/opensearch/sql/opensearch/storage/script/ScriptUtils.java
Lines 20 to 29 in 34be98d
convertTextToKeyword
is not used everywhere (e.g. relevance search functions);fields
property could has any name;What solution would you like?
Use mapping info to properly set fields name -
words
in the given sample.What alternatives have you considered?
Add limitation section to documentation and return error on querying such kind of fields (aka columns).
Do you have any additional context?
Related to #794, #1038 and #1112.
The text was updated successfully, but these errors were encountered: