Merge branch 'szhou/feature/multiwaymerge' of github.com:taosdata/TDengine into szhou/feature/multiwaymerge
This commit is contained in:
commit
3f633cfede
|
@ -173,6 +173,11 @@ int32_t qExplainGenerateResChildren(SPhysiNode *pNode, SExplainGroup *group, SNo
|
||||||
pPhysiChildren = partitionPhysiNode->node.pChildren;
|
pPhysiChildren = partitionPhysiNode->node.pChildren;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case QUERY_NODE_PHYSICAL_PLAN_MERGE: {
|
||||||
|
SMergePhysiNode *mergePhysiNode = (SMergePhysiNode *)pNode;
|
||||||
|
pPhysiChildren = mergePhysiNode->node.pChildren;
|
||||||
|
break;
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
qError("not supported physical node type %d", pNode->type);
|
qError("not supported physical node type %d", pNode->type);
|
||||||
QRY_ERR_RET(TSDB_CODE_QRY_APP_ERROR);
|
QRY_ERR_RET(TSDB_CODE_QRY_APP_ERROR);
|
||||||
|
|
Loading…
Reference in New Issue