fix(query): remove invalid colId check.
This commit is contained in:
parent
b9e98b42cd
commit
4f8c84cf02
|
@ -341,7 +341,7 @@ void doTimeWindowInterpolation(SIntervalAggOperatorInfo* pInfo, int32_t numOfExp
|
|||
SFunctParam* pParam = &pCtx[k].param[0];
|
||||
SColumnInfoData* pColInfo = taosArrayGet(pDataBlock, pParam->pCol->slotId);
|
||||
|
||||
ASSERT(pColInfo->info.colId == pParam->pCol->colId && curTs != windowKey);
|
||||
ASSERT(pColInfo->info.type == pParam->pCol->type && curTs != windowKey);
|
||||
|
||||
double v1 = 0, v2 = 0, v = 0;
|
||||
if (prevRowIndex == -1) {
|
||||
|
|
Loading…
Reference in New Issue