-
Notifications
You must be signed in to change notification settings - Fork 25.8k
Terms query is broken #80
Copy link
Copy link
Closed
Description
Hiya
Commit 93e0253 breaks the terms query:
curl -XPUT 'http://127.0.0.2:9200/es_test_1/'
curl -XPUT 'http://127.0.0.2:9200/_all/type_1/_mapping?ignoreConflicts=true' -d '
{
"properties" : {
"num" : {
"store" : "yes",
"type" : "integer"
},
"text" : {
"store" : "yes",
"type" : "string"
}
}
}
'
curl -XGET 'http://127.0.0.2:9200/_cluster/health?timeout=2s&waitForStatus=yellow'
curl -XPUT 'http://127.0.0.2:9200/es_test_1/type_1/1' -d '
{
"num" : 2,
"text" : "foo"
}
'
curl -XGET 'http://127.0.0.2:9200/_terms?fields=num&toInclusive=true'
# {"error":null}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
Type
Fields
Give feedbackNo fields configured for issues without a type.