Skip to content

Add checks for field collapse test failure #54831

New issue

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

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ setup:
---
"field collapsing":

- do:
count:
index: test
- match: {count: 6}

- do:
search:
rest_total_hits_as_int: true
Expand Down Expand Up @@ -88,6 +93,11 @@ setup:
---
"field collapsing and from":

- do:
count:
index: test
- match: {count: 6}

- do:
search:
rest_total_hits_as_int: true
Expand All @@ -109,6 +119,11 @@ setup:
---
"field collapsing and inner_hits":

- do:
count:
index: test
- match: {count: 6}

- do:
search:
rest_total_hits_as_int: true
Expand Down Expand Up @@ -149,6 +164,11 @@ setup:
---
"field collapsing, inner_hits and maxConcurrentGroupRequests":

- do:
count:
index: test
- match: {count: 6}

- do:
search:
rest_total_hits_as_int: true
Expand Down Expand Up @@ -233,6 +253,11 @@ setup:
---
"no hits and inner_hits":

- do:
count:
index: test
- match: {count: 6}

- do:
search:
rest_total_hits_as_int: true
Expand Down Expand Up @@ -265,6 +290,10 @@ setup:

---
"field collapsing and multiple inner_hits":
- do:
count:
index: test
- match: {count: 6}

- do:
search:
Expand Down Expand Up @@ -323,6 +352,11 @@ setup:
version: " - 6.1.0"
reason: "bug fixed in 6.1.1"

- do:
count:
index: test
- match: {count: 6}

- do:
search:
rest_total_hits_as_int: true
Expand Down