fix: pre-allocated columns has no data

This commit is contained in:
slzhou 2024-01-29 11:02:38 +08:00
parent 08c2891d50
commit 6849ccd280
1 changed files with 3 additions and 1 deletions

View File

@ -399,10 +399,12 @@ static void mergeJoinJoinLeftRight(struct SOperatorInfo* pOperator, SSDataBlock*
colDataSetNULL(pDst, currRow);
} else {
char* p = colDataGetData(pSrc, rowIndex);
if (p != NULL) {
colDataSetVal(pDst, currRow, p, false);
}
}
}
}
typedef struct SRowLocation {
SSDataBlock* pDataBlock;
int32_t pos;