Github user nickwallen commented on the issue: https://github.com/apache/metron/pull/942 @MohanDV - It looks like some care was taken previously so that getting the max of a list of mixed elements will just work. For example `MAX([1, 2d, 3f]) == 3f`. Did you consider an implementation such that this would continue to work with STATS objects? I imagine that something like the following could be made to work; `MAX[1, 2d, 3f, stats]`? What do you think?
---