[TD-4825]<feature> order by col after group-by

This commit is contained in:
yihaoDeng 2021-06-27 05:04:33 +08:00
parent a2edc05ba0
commit b2975b7c4d
1 changed files with 2 additions and 1 deletions

View File

@ -264,7 +264,8 @@ static void sortGroupResByOrderList(SGroupResInfo *pGroupResInfo, SQueryRuntimeE
SRowCompSupporter support = {.pRuntimeEnv = pRuntimeEnv, .dataOffset = dataOffset, .comFunc = getComparFunc(type, 0)};
return taosArraySortPWithExt(pGroupResInfo->pRows, compareRowData, &support);
taosArraySortPWithExt(pGroupResInfo->pRows, compareRowData, &support);
return;
}
//setup the output buffer for each operator