wuyunfeng commented on a change in pull request #4901:
URL: https://github.com/apache/incubator-doris/pull/4901#discussion_r524943290



##########
File path: 
fe/fe-core/src/main/java/org/apache/doris/planner/SingleNodePlanner.java
##########
@@ -1473,7 +1473,7 @@ private Expr rewritePredicate(Analyzer analyzer, Expr 
oldPredicate, Expr leftChi
 
         if (oldPredicate instanceof InPredicate) {
             InPredicate oldIP = (InPredicate) oldPredicate;
-            InPredicate ip =  new InPredicate(leftChild, 
oldIP.getListChildren(), oldIP.isNotIn());
+            InPredicate ip = new InPredicate(leftChild, 
oldIP.getListChildren(), oldIP.isNotIn());

Review comment:
       ```suggestion
               InPredicate inPredicate = new InPredicate(leftChild, 
oldIP.getListChildren(), oldIP.isNotIn());
   ```




----------------------------------------------------------------
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:
us...@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to