jinxing64 commented on a change in pull request #1690: [CALCITE-3524] Add 
methods for creating RexSubQueries in RelBuilder
URL: https://github.com/apache/calcite/pull/1690#discussion_r361461525
 
 

 ##########
 File path: core/src/main/java/org/apache/calcite/tools/RelBuilder.java
 ##########
 @@ -1053,6 +1045,29 @@ public RexNode patternExclude(RexNode node) {
         ImmutableList.of(node));
   }
 
+  // Methods that create RexSubQuery
+
+
+  /** Creates an IN sub-query. */
+  public RexSubQuery in(RelNode rel, ImmutableList<RexNode> nodes) {
+    return RexSubQuery.in(rel, nodes);
+  }
 
 Review comment:
   +1

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to