Skip to content

Commit b4ff756

Browse files
fix: remove tests from 7.17 (#85534)
Backport PR #85467 added two tests: * Multi-value date histogram * Multi-value date histogram docvalues only as a result of a mistake while doing a conflict resolution. With this PR I will remove them temporarily from master, backport the fix to 7.17.3 and later make another PR to master to add them back. This is a fix for #85509.
1 parent 4f9e09b commit b4ff756

File tree

2 files changed

+5
-42
lines changed

2 files changed

+5
-42
lines changed

docs/changelog/85534.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 85534
2+
summary: "Fix: remove tests from 7.17"
3+
area: Aggregations
4+
type: bug
5+
issues: []

rest-api-spec/src/yamlRestTest/resources/rest-api-spec/test/search.aggregation/360_date_histogram.yml

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -312,45 +312,3 @@ setup:
312312
- match: { aggregations.date_histogram_no__tz.buckets.2.key: 1619906400000 }
313313
- match: { aggregations.date_histogram_no__tz.buckets.3.key: 1619910000000 }
314314

315-
---
316-
"Multi-value date histogram":
317-
- skip:
318-
version: "all"
319-
reason: AwaitsFix https://github.com/elastic/elasticsearch/issues/85509
320-
321-
- do:
322-
search:
323-
body:
324-
query:
325-
match:
326-
date: "2021-04-01"
327-
aggs:
328-
datehisto:
329-
date_histogram:
330-
field: "date"
331-
calendar_interval: "1M"
332-
333-
- match: { hits.total.value: 1 }
334-
- length: { aggregations.datehisto.buckets: 2 }
335-
336-
---
337-
"Multi-value date histogram docvalues only":
338-
- skip:
339-
version: "all"
340-
reason: AwaitsFix https://github.com/elastic/elasticsearch/issues/85509
341-
342-
- do:
343-
search:
344-
body:
345-
profile: true
346-
query:
347-
match:
348-
date_not_indexed: "2021-04-01"
349-
aggs:
350-
datehisto:
351-
date_histogram:
352-
field: "date_not_indexed"
353-
calendar_interval: "1M"
354-
355-
- match: { hits.total.value: 1 }
356-
- length: { aggregations.datehisto.buckets: 3 }

0 commit comments

Comments
 (0)