[TD-4825]<feature> order by col after group-by
This commit is contained in:
parent
a2edc05ba0
commit
b2975b7c4d
|
@ -264,7 +264,8 @@ static void sortGroupResByOrderList(SGroupResInfo *pGroupResInfo, SQueryRuntimeE
|
||||||
|
|
||||||
SRowCompSupporter support = {.pRuntimeEnv = pRuntimeEnv, .dataOffset = dataOffset, .comFunc = getComparFunc(type, 0)};
|
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
|
//setup the output buffer for each operator
|
||||||
|
|
Loading…
Reference in New Issue