Per IBM documentation at - http://publib.boulder.ibm.com/infocenter/bigins/v1r1/index.jsp?topic=%2Fcom.ibm.swg.im.infosphere.biginsights.doc%2Fdoc%2Fc0057749.html the default order of Jaql's top operator is ascending. But when I run it, I see the default order as descending. I am using BigInsights version 1.4. I was wondering if anyone knows whether this is a documentation issue or some other reason behind this seeming discrepancy -
jaql> nums = [2,1,3];
jaql> nums -> top 2;
[
2,
1
]