Skip to content

Commit 8c7cb9b

Browse files
committed
problem reproduce
1 parent 40dfbd3 commit 8c7cb9b

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

rest-api-spec/src/main/resources/rest-api-spec/test/search/270_wildcard_fieldtype_queries.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -393,3 +393,18 @@ setup:
393393
terms: { my_field: [ "\\*" ] }
394394
- match: { hits.total.value: 1 }
395395
- match: { hits.hits.0._id: "9" }
396+
397+
---
398+
"sort on doc value enabled wildcard":
399+
- do:
400+
search:
401+
index: test
402+
body:
403+
query:
404+
wildcard:
405+
my_field:
406+
value: "*"
407+
sort:
408+
- my_field.doc_values:
409+
order: asc
410+
size: 4

0 commit comments

Comments
 (0)