Github user vrozov commented on a diff in the pull request:
https://github.com/apache/drill/pull/1073#discussion_r157605488
--- Diff:
exec/java-exec/src/test/java/org/apache/drill/exec/physical/impl/partitionsender/TestPartitionSender.java
---
@@ -350,7 +350,7 @@ public void testAlgorithm() throws Exception {
public MockPartitionSenderRootExec(FragmentContext context,
RecordBatch incoming, HashPartitionSender operator)
throws OutOfMemoryException {
- super(context, incoming, operator);
+ super(context, incoming, operator, false);
--- End diff --
Is the change still necessary?
---