Merge pull request #6818 from taosdata/hotfix/TD-5156
[TD-5156]fix interval issue
This commit is contained in:
commit
794549527c
|
@ -1304,7 +1304,8 @@ static void hashIntervalAgg(SOperatorInfo* pOperatorInfo, SResultRowInfo* pResul
|
||||||
j++;
|
j++;
|
||||||
}
|
}
|
||||||
|
|
||||||
for(; pResultRowInfo->pResult[j] != pResultRowInfo->current; ++j) {
|
SResultRow* current = pResultRowInfo->current;
|
||||||
|
for(; pResultRowInfo->pResult[j] != current && j < pResultRowInfo->size; ++j) {
|
||||||
SResultRow* pRes = pResultRowInfo->pResult[j];
|
SResultRow* pRes = pResultRowInfo->pResult[j];
|
||||||
if (pRes->closed) {
|
if (pRes->closed) {
|
||||||
assert(resultRowInterpolated(pRes, RESULT_ROW_START_INTERP) && resultRowInterpolated(pRes, RESULT_ROW_END_INTERP));
|
assert(resultRowInterpolated(pRes, RESULT_ROW_START_INTERP) && resultRowInterpolated(pRes, RESULT_ROW_END_INTERP));
|
||||||
|
|
Loading…
Reference in New Issue