You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
explain select b.channel_id from table_a as b left join (select c.channel_id from table_b )c on c.channel_id \nLIMIT 0, 200
doris returns syntax error messages when we set enable_fallback_to_original_planner = false
MySQL [testdb]> explain select b.channel_id from table_a as b left join (select c.channel_id from table_b )c on c.channel_id \nLIMIT 0, 200;
PAGER set to stdout
ERROR 1105 (HY000): errCode = 2, detailMessage = Unknown column 'channel_id' in 'c' in PROJECT clause
Search before asking
Version
2.1
What's Wrong?
Doris did not detect any syntax issues and fallback to old planner when I used the new nereids_planner.
What You Expected?
when using nereids planner ,it returns syntax error messages instead of falling back to old planner.
How to Reproduce?
Reproduce steps:
Anything Else?
No response
Are you willing to submit PR?
Code of Conduct
The text was updated successfully, but these errors were encountered: