未验证 提交 7077365f 编写于 作者: M Minglei Jin 提交者: GitHub

Merge pull request #13295 from taosdata/fix/TS-1561-V24

fix(query): V24 mixed operator column calc output size error
......@@ -3922,7 +3922,9 @@ void* createQInfoFromQueryNode(SQueryInfo* pQueryInfo, STableGroupInfo* pTableGr
} else if (pQueryAttr->pExpr2 != NULL) {
pEx = pQueryAttr->pExpr2;
num = pQueryAttr->numOfExpr2;
} else {
}
if ( num < pQueryAttr->numOfOutput) {
pEx = pQueryAttr->pExpr1;
num = pQueryAttr->numOfOutput;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册