Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fix](split)Fixed the bug that batch mode split could not query data …
…in multiple be scenarios. (#46218) ### What problem does this PR solve? Problem Summary: In multiple be scenarios, batch mode split sometimes could not query data. The reason is that the estimated `numApproximateSplits()` may be relatively small, and the value after dividing the current number of be may be 0. As a result, the split will not be distributed to be, and the query result will be empty. We need to take the max of the value after division and 1.
- Loading branch information