hf200012 commented on issue #13529:
URL: https://github.com/apache/doris/issues/13529#issuecomment-1285744761

   ```
   mysql> select
       -> f1.k1
       -> from (
       -> 
       -> select
       -> bbb.c as k1
       -> from t5 aaa
       -> left join t2 bbb on bbb.x=aaa.x
       -> left join t4  ccc on bbb.a=ccc.a and bbb.x in ('ZCR', 'ZDR')
       -> ) f1
       -> left join v1 on f1.k1=v1.k1;
   Empty set (0.01 sec)
   ```
   
   The inner join bug
   Left join is normal


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

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to