biohazard4321 opened a new pull request, #44845:
URL: https://github.com/apache/doris/pull/44845

   Also fix stop split too early in select join statement.
   
   ### What problem does this PR solve?
   In query with join like "select  dt.d_year,dt.d_moy from  date_dim dt 
,store_sales where dt.d_date_sk = store_sales.ss_sold_date_sk group by 
dt.d_year, dt.d_moy order by  dt.d_year, dt.d_moy limit 100",
   the old fix in commit 83797e36aeb stops SplitAssignment in 
FileScanNode.getNodeExplainString,that would be called in normal query (in 
StmtExecutor.updateProfile),then BE would get empty split and make wrong result。
   So i changed the place where SplitAssignment need stop in explain only 
statement.


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