feat: sql command 'drop cgroup'

This commit is contained in:
Xiaoyu Wang 2022-05-25 22:33:41 +08:00
parent 6d3f066540
commit 0de64aa805
1 changed files with 1 additions and 1 deletions

View File

@ -321,7 +321,7 @@ int32_t colDataAssign(SColumnInfoData* pColumnInfoData, const SColumnInfoData* p
pColumnInfoData->nullbitmap = tmp;
memcpy(pColumnInfoData->nullbitmap, pSource->nullbitmap, BitmapLen(numOfRows));
if (pColumnInfoData->pData) {
if (pSource->pData) {
int32_t newSize = numOfRows * pColumnInfoData->info.bytes;
tmp = taosMemoryRealloc(pColumnInfoData->pData, newSize);
if (tmp == NULL) {