Some progress on failing runtime fields tests (bring #61098 to 7.x) (#61115)

* Some progress on failing runtime fields tests (bring #61098 to 7.x)

This breaks apart the a test for the `terms` aggregation into one that
work for runtime fields and one that doesn't.
This commit is contained in:
Nik Everett 2020-08-17 09:56:55 -04:00 committed by GitHub
parent 639782da12
commit 1e6400285c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 34 additions and 0 deletions

View File

@ -750,6 +750,40 @@ setup:
- match: { indices.test_1.total.fielddata.memory_size_in_bytes: 0}
---
"Global ordinals are loaded with the global_ordinals execution hint":
- skip:
version: " - 6.99.99"
reason: bug fixed in 7.0
- do:
index:
refresh: true
index: test_1
id: 1
routing: 1
body: { "str": "abc" }
- do:
index:
refresh: true
index: test_1
id: 2
routing: 1
body: { "str": "abc" }
- do:
index:
refresh: true
index: test_1
id: 3
routing: 1
body: { "str": "bcd" }
- do:
indices.refresh: {}
- do:
search:
index: test_1