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
In OrderFunDef.evaluateList there is code that makes all lists except ArrayTupleList null
publicTupleListevaluateList( Evaluatorevaluator ) {
evaluator.getTiming().markStart( TIMING_NAME );
try {
finalTupleIterableiterable = iterCalc.evaluateIterable( evaluator );
// REVIEW: If iterable happens to be a list, we'd like to pass it,// but we cannot yet guarantee that it is mutable.finalTupleListlist = iterableinstanceofArrayTupleList && false ? (TupleList) iterable : null;
// go by size of keySpecList before purging
and if logging enabled this null pass to Sorter.LogTuples and create NullPointerException.
I can't understand how to fix it better, should I add a check for null in LogTuples, or OrderFunDef works incorrectly.
The text was updated successfully, but these errors were encountered:
In OrderFunDef.evaluateList there is code that makes all lists except ArrayTupleList null
and if logging enabled this null pass to Sorter.LogTuples and create NullPointerException.
I can't understand how to fix it better, should I add a check for null in LogTuples, or OrderFunDef works incorrectly.
The text was updated successfully, but these errors were encountered: