hqx871 commented on PR #34092:
URL: https://github.com/apache/doris/pull/34092#issuecomment-2080412712

   The master is much different from 1.2 which I used. And multi join with 
subquery work well  after 17035, so just close the pr. The only left problem is 
the follow join should be bucket join but it choose to colocate join
   ```
   select a.id,a.name,t1.id,t1.name,cid,cname from test_colo1 a join (select 
b.id,b.name,c.id as cid,c.name as cname from test_colo2 b left join test_colo3 
c on b.id = c.id and b.name = c.name) t1 on a.id=t1.id and a.name= t1.name;
   
   ```


-- 
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-unsubscr...@doris.apache.org

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