HappenLee opened a new issue #5939:
URL: https://github.com/apache/incubator-doris/issues/5939
**Describe the bug**
There is a problem check the fragment whether is colocate / bucket shuffle
join, because here only check one child of node. It's not reasonable and could
cause bug of query.
````
for (PlanNode childNode : node.getChildren()) {
return isColocateJoin(childNode);
}
for (PlanNode childNode : node.getChildren()) {
return isBucketShuffleJoin(fragmentId, childNode);
}
```
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]