sohami commented on a change in pull request #1334: DRILL-6385: Support JPPD 
feature
URL: https://github.com/apache/drill/pull/1334#discussion_r209723766
 
 

 ##########
 File path: 
exec/java-exec/src/main/java/org/apache/drill/exec/planner/sql/handlers/DefaultSqlHandler.java
 ##########
 @@ -594,15 +595,24 @@ protected Prel convertToPrel(RelNode drel, RelDataType 
validatedRowType) throws
      */
     phyRelNode = InsertLocalExchangeVisitor.insertLocalExchanges(phyRelNode, 
queryOptions);
 
+    /*
+     * 8.)
+     * Insert RuntimeFilter over Scan nodes
+     */
+    if (context.isRuntimeFilterEnabled()) {
+      phyRelNode = 
RuntimeFilterPrelVisitor.addRuntimeFilterPrelOverScanPrel(phyRelNode);
 
 Review comment:
   How will this know to add `RuntimeFilter` operator downstream of only probe 
side Scan and not on build side Scan ?

----------------------------------------------------------------
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

Reply via email to