fix(cache/read): set none to null instead of skipping column

This commit is contained in:
Minglei Jin 2023-05-23 14:51:26 +08:00
parent b4e82315cc
commit 6d620a7d7c
1 changed files with 0 additions and 3 deletions

View File

@ -63,9 +63,6 @@ static int32_t saveOneRow(SArray* pRow, SSDataBlock* pBlock, SCacheRowsReader* p
SLastCol* pColVal = (SLastCol*)taosArrayGet(pRow, i);
SColVal* pVal = &pColVal->colVal;
if (COL_VAL_IS_NONE(&pColVal->colVal)) {
continue;
}
allNullRow = false;
if (IS_VAR_DATA_TYPE(pColVal->colVal.type)) {
if (!COL_VAL_IS_VALUE(&pColVal->colVal)) {