You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Modify unsigned_long tests for broader ranges (#63782)
UnsignedLongTests for the range agg was using very specific intervals
that double type can not distinguish due to lack of precision:
9.223372036854776000E18 == 9.223372036854775807E18 returns true
If we add the corresponding range query test, it will return different
number of hits than the range agg, as range query unlike range agg
doesn't convert valued to double type, and hence more precise.
This patch make broader ranges for the range agg test (so values
converted to doubles don't loose precision), and hence corresponding
range query will return the same number of hits.
Relates to #60050
Copy file name to clipboardExpand all lines: x-pack/plugin/mapper-unsigned-long/src/test/java/org/elasticsearch/xpack/unsignedlong/UnsignedLongTests.java
0 commit comments