You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by GitBox <gi...@apache.org> on 2022/10/20 15:26:22 UTC

[GitHub] [doris] hf200012 commented on issue #13529: [Bug] Return Unknown column when left join a view within multiple inner join query statement.

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: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


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