Fixed
Details
Assignee
Marko BekhtaMarko BekhtaReporter
Fabio Massimo ErcoliFabio Massimo ErcoliComponents
Sprint
NoneFix versions
Priority
Minor
Details
Details
Assignee
Marko Bekhta
Marko BekhtaReporter
Fabio Massimo Ercoli
Fabio Massimo ErcoliComponents
Sprint
None
Fix versions
Priority
Created February 4, 2021 at 10:53 AM
Updated June 2, 2023 at 1:33 PM
Resolved April 24, 2023 at 7:01 AM
We could introduce two more options:
.missing().highest()
: consider a missing value as the highest/farthest values of the result set, putting it last in ascending order or first in descending order..missing().lowest()
: consider a missing value as the lowest/nearest values of the result set, putting it first in ascending order or last in descending order.As a workaround the user can now simulate these two options just by using
missing().use(…)
and providing there a very large/small value. Or by usingmissing().last()
ormissing().first()
depending on the sort order.