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

   It can be avoided by rewriting sql first
   ```
   select
   f1.k1
   from (
   select
   t2.c as k1
   from t5
   inner join t2 on t2.x=t5.x
   inner join t4 on t2.a=t4.a WHERE t2.x in ('ZCR', 'ZDR')
   ) f1
   left join v1 on f1.k1=v1.k1; 
   ```


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