API.Ordering ordering = ordering(A, ASC, B, ASC, C, DESC, ID, ASC);
long[] idOrdering = longs(1011, 1010, 1013, 1012, 1015, 1014);
{
Operator plan = indexScan_Default(idxRowType, bounded(1, 11, true, 13, true), ordering);
Cursor cursor = cursor(plan, queryContext, queryBindings);
cursor.openTopLevel();
testJump(cursor, idOrdering, 0);
testJump(cursor, idOrdering, -1);
cursor.closeTopLevel();
}
{