[feat](pipelinex) support parallel scan on pipeline x engine (#29070)
* [feat](pipelinex) support parallel scan on pipeline x engine * make parallel scan be independent of shared scan
This commit is contained in:
@ -1099,6 +1099,10 @@ public class Coordinator implements CoordInterface {
|
||||
try {
|
||||
PExecPlanFragmentResult result = triple.getRight().get(timeoutMs, TimeUnit.MILLISECONDS);
|
||||
code = TStatusCode.findByValue(result.getStatus().getStatusCode());
|
||||
if (code == null) {
|
||||
code = TStatusCode.INTERNAL_ERROR;
|
||||
}
|
||||
|
||||
if (code != TStatusCode.OK) {
|
||||
if (!result.getStatus().getErrorMsgsList().isEmpty()) {
|
||||
errMsg = result.getStatus().getErrorMsgsList().get(0);
|
||||
|
||||
Reference in New Issue
Block a user