152153154155156157158159
@Override public synchronized void noMoreSplits() { if (source == null) { source = new FinishedOperator(operatorContext, types); } }
174175176177178179180181182183184
{ Operator delegate; synchronized (this) { delegate = getSource(); if (delegate == null) { source = new FinishedOperator(operatorContext, types); return; } } delegate.finish(); }
153154155156157158159160
175176177178179180181182183184185