MsinAz opened a new issue, #33603:
URL: https://github.com/apache/doris/issues/33603

   ### Search before asking
   
   - [X] I had searched in the 
[issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no 
similar issues.
   
   
   ### Version
   
   2.11
   
   ### What's Wrong?
   
   `select * from mysql.db.table   limit 10000 offset 5000 ;`
   最总下推查询为
   `select * from mysql.db.table   limit 15000;`
   与实际预期不符。
   
   Explain String(Nereids Planner)
   PLAN FRAGMENT 0
   OUTPUT EXPRS:
   
   PARTITION: UNPARTITIONED
   ""
   HAS_COLO_PLAN_NODE: false
   ""
   VRESULT SINK
   MYSQL_PROTOCAL
   ""
   2:VEXCHANGE
   offset: 5000
   distribute expr lists:
   ""
   PLAN FRAGMENT 1
   ""
   PARTITION: UNPARTITIONED
   ""
   HAS_COLO_PLAN_NODE: false
   ""
   STREAM DATA SINK
   EXCHANGE ID: 02
   UNPARTITIONED
   ""
   1:VEXCHANGE
   offset: 0
   limit: 15000
   distribute expr lists:
   ""
   PLAN FRAGMENT 2
   ""
   PARTITION: RANDOM
   ""
   HAS_COLO_PLAN_NODE: false
   ""
   STREAM DATA SINK
   EXCHANGE ID: 01
   UNPARTITIONED
   ""
   0:VJdbcScanNode(83)
   TABLE: `mysql`.`db`
   QUERY: SELECT `f1` FROM `mysql`.`db` LIMIT 15000
   limit: 15000
   
   
   
   
   ### What You Expected?
   
   No response
   
   ### How to Reproduce?
   
   No response
   
   ### Anything Else?
   
   No response
   
   ### Are you willing to submit PR?
   
   - [ ] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


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