-
|
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 2 replies
-
No idea so far. I am inviting @leiysky & @andylokandy to take a look. |
Beta Was this translation helpful? Give feedback.
-
It needs enable the new planner for your session: |
Beta Was this translation helpful? Give feedback.
-
As @BohuTANG said, you need to enable the new planner. And we only support inner join with explicit join condition for now, it allows you to write a join query as: select * from t inner join t1 on t.a = t1.a;
select * from t natural join t1;
select * from t inner join t1 using(a); We are implementing the rest join types, you can track it in #5498. |
Beta Was this translation helpful? Give feedback.
-
I'll support the |
Beta Was this translation helpful? Give feedback.
As @BohuTANG said, you need to enable the new planner. And we only support inner join with explicit join condition for now, it allows you to write a join query as:
We are implementing the rest join types, you can track it in #5498.