sohami commented on a change in pull request #1504: DRILL-6792: Find the right probe side fragment wrapper & fix DrillBuf… URL: https://github.com/apache/drill/pull/1504#discussion_r229909546
########## File path: exec/java-exec/src/main/java/org/apache/drill/exec/work/filter/RuntimeFilterWritable.java ########## @@ -103,6 +103,27 @@ public RuntimeFilterWritable duplicate(BufferAllocator bufferAllocator) { return new RuntimeFilterWritable(runtimeFilterBDef, cloned); } + public void retainBuffers(final int increment) { + if (increment <= 0) { + return; + } + for (final DrillBuf buf : data) { + buf.retain(increment); + } + } + + public RuntimeFilterWritable newRuntimeFilterWritable(BufferAllocator bufferAllocator) { Review comment: Please add a TODO comment saying: Not used currently because of <DRILL-XXXX> reference the JIRA number which you will create with explanation. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services