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
The order by path has the form defined as -
AGG_SEPARATOR := '>'
METRIC_SEPARATOR := '.'
AGG_NAME :=
METRIC := <the name of the metric (in case of multi-value metrics aggregation)>
PATH := <AGG_NAME>[<AGG_SEPARATOR><AGG_NAME>]*[<METRIC_SEPARATOR>]
Since AGG_NAME can contain dots (.) which is the METRIC_SEPARATOR, is it possible to somehow quote the AGG_NAME ?
A similar problem would arise if the multi-value metric aggregation name is a part of AGG_NAME
The text was updated successfully, but these errors were encountered:
I took a quick look at src/main/java/org/elasticsearch/search/aggregations/support/OrderPath.java and it doesn't look like there's any code to escape/quote parts of the order path.
The order by path has the form defined as -
AGG_SEPARATOR := '>'
METRIC_SEPARATOR := '.'
AGG_NAME :=
METRIC := <the name of the metric (in case of multi-value metrics aggregation)>
PATH := <AGG_NAME>[<AGG_SEPARATOR><AGG_NAME>]*[<METRIC_SEPARATOR>]
Since AGG_NAME can contain dots (.) which is the METRIC_SEPARATOR, is it possible to somehow quote the AGG_NAME ?
A similar problem would arise if the multi-value metric aggregation name is a part of AGG_NAME
The text was updated successfully, but these errors were encountered: