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

 ##########
 File path: 
exec/java-exec/src/main/java/org/apache/drill/exec/physical/impl/join/HashJoinBatch.java
 ##########
 @@ -491,6 +508,50 @@ private void setupHashTable() throws 
SchemaChangeException {
     // Create the chained hash table
     baseHashTable =
       new ChainedHashTable(htConfig, context, allocator, buildBatch, 
probeBatch, null);
+    if (enableRuntimeFilter) {
+      setupHash64(htConfig);
+    }
+  }
+
+  private void setupHash64(HashTableConfig htConfig) throws 
SchemaChangeException {
+    LogicalExpression[] keyExprsBuild = new 
LogicalExpression[htConfig.getKeyExprsBuild().size()];
+    ErrorCollector collector = new ErrorCollectorImpl();
+    int i = 0;
+    for (NamedExpression ne : htConfig.getKeyExprsBuild()) {
+      final LogicalExpression expr = 
ExpressionTreeMaterializer.materialize(ne.getExpr(), buildBatch, collector, 
context.getFunctionRegistry());
+      if (collector.hasErrors()) {
+        throw new SchemaChangeException("Failure while materializing 
expression. " + collector.toErrorString());
+      }
+      if (expr == null) {
+        continue;
+      }
+      keyExprsBuild[i] = expr;
+      i++;
+    }
+    i = 0;
+    boolean meetNotExistField = false;
 
 Review comment:
   Better name would be  'missingField' .

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