Merge pull request #11828 from taosdata/fix/TD-15116
fix(query): count function result on stable inconsistant with normal table
This commit is contained in:
commit
9122fb077b
|
@ -3775,6 +3775,9 @@ int32_t setSDataBlockFromFetchRsp(SSDataBlock* pRes, SLoadRemoteDataInfo* pLoadI
|
|||
}
|
||||
|
||||
memcpy(pColInfoData->pData, pStart, colLen[i]);
|
||||
//TODO setting this flag to true temporarily so aggregate function on stable will
|
||||
//examine NULL value for non-primary key column
|
||||
pColInfoData->hasNull = true;
|
||||
pStart += colLen[i];
|
||||
}
|
||||
} else { // extract data according to pColList
|
||||
|
|
Loading…
Reference in New Issue