Fix bwc integ test that tries to perform a term aggs on a scaled_float. This is broken when a node with version prior to 5.2.0 is used with another node > 5.2.0. This is because scaled_float fields are considered as longs in version < 5.2.0. This is fixed in 5.2.0 where scaled_float are recognized as doubles.
This commit is contained in:
parent
e6fb3a5d95
commit
02d4cbfeea
|
@ -287,6 +287,10 @@ setup:
|
|||
|
||||
---
|
||||
"Scaled float test":
|
||||
- skip:
|
||||
version: " - 5.2.0"
|
||||
reason: scaled_float were considered as longs in aggregations, this was fixed in 5.2.0
|
||||
|
||||
- do:
|
||||
index:
|
||||
index: test_1
|
||||
|
|
Loading…
Reference in New Issue