451452453454455456457458
if (problemVars.isEmpty()) { // left join is "well designed" return new LeftJoinCursor(this, leftJoin, bindings); } else { return new BadlyDesignedLeftJoinCursor(this, leftJoin, bindings, problemVars); } }
9293949596979899
ParallelLeftJoinCursor arg = new ParallelLeftJoinCursor(this, leftJoin, bindings); executor.execute(arg); return arg; } else { return new BadlyDesignedLeftJoinCursor(this, leftJoin, bindings, problemVars); } }