Github user ilooner commented on a diff in the pull request:
https://github.com/apache/drill/pull/1045#discussion_r162495701
--- Diff:
exec/java-exec/src/test/java/org/apache/drill/test/OperatorFixture.java ---
@@ -351,8 +603,110 @@ public OperatorStats getStats() {
}
}
- public OperatorContext operatorContext(PhysicalOperator config) {
- return new TestOperatorContext(context, allocator(), config, stats);
+ public static class MockPhysicalOperator implements PhysicalOperator {
--- End diff --
Thanks for catching this. This class is left over from some previous work
and is not used. I've deleted it.
---