mirror of
https://github.com/actiontech/dble.git
synced 2026-05-19 06:11:06 -05:00
fix when left join can not merge with global table (#1887)
This commit is contained in:
@@ -76,7 +76,7 @@ public final class GlobalTableProcessor {
|
||||
if (left.getUnGlobalTableCount() == 0) { // left node is global,left join will not push down
|
||||
tn.setNoshardNode(null);
|
||||
status = false;
|
||||
} else if (left.type() == PlanNode.PlanNodeType.TABLE || !PlanUtil.isERNode(left)) {
|
||||
} else if (left.type() == PlanNode.PlanNodeType.TABLE || PlanUtil.isERNode(left)) {
|
||||
if (!isGlobalTableBigEnough(jn)) {
|
||||
tn.setNoshardNode(null);
|
||||
status = false;
|
||||
|
||||
Reference in New Issue
Block a user