bug fix for reading SDataRow VarT Values
This commit is contained in:
parent
c02c5d8bfd
commit
dd8aaaf366
|
@ -343,7 +343,6 @@ SNewVgroupInfo createNewVgroupInfo(SVgroupMsg *pVgroupMsg);
|
|||
|
||||
typedef struct {
|
||||
// for SDataRow
|
||||
STSchema* pTSchema;
|
||||
SSchema* pSchema;
|
||||
int16_t sversion;
|
||||
int32_t flen;
|
||||
|
|
|
@ -1714,7 +1714,7 @@ SMemRow tdGenMemRowFromBuilder(SMemRowBuilder* pBuilder) {
|
|||
}
|
||||
pBuilder->buf = p;
|
||||
} else if (memRowType == SMEM_ROW_KV) {
|
||||
ASSERT(nColsNotNull < pBuilder->nCols);
|
||||
ASSERT(nColsNotNull <= pBuilder->nCols);
|
||||
SKVRow kvRow = (SKVRow)memRowBody(memRow);
|
||||
uint16_t tlen = TD_KV_ROW_HEAD_SIZE + sizeof(SColIdx) * nColsNotNull;
|
||||
kvRowSetLen(kvRow, tlen);
|
||||
|
@ -1810,6 +1810,7 @@ static int32_t getRowExpandSize(STableMeta* pTableMeta) {
|
|||
if (IS_VAR_DATA_TYPE((pSchema + i)->type)) {
|
||||
result += TYPE_BYTES[TSDB_DATA_TYPE_BINARY];
|
||||
}
|
||||
result += sizeof(SColIdx);
|
||||
}
|
||||
result += TD_MEM_ROW_TYPE_SIZE; // add len of SMemRow flag
|
||||
return result;
|
||||
|
|
|
@ -1459,6 +1459,7 @@ static void copyOneRowFromMem(STsdbQueryHandle* pQueryHandle, int32_t capacity,
|
|||
int32_t i = 0;
|
||||
|
||||
if (isDataRow(row)) {
|
||||
SDataRow dataRow = memRowBody(row);
|
||||
int32_t j = 0;
|
||||
while (i < numOfCols && j < numOfRowCols) {
|
||||
SColumnInfoData* pColInfo = taosArrayGet(pQueryHandle->pColumns, i);
|
||||
|
@ -1475,7 +1476,7 @@ static void copyOneRowFromMem(STsdbQueryHandle* pQueryHandle, int32_t capacity,
|
|||
|
||||
if (pSchema->columns[j].colId == pColInfo->info.colId) {
|
||||
void* value =
|
||||
tdGetRowDataOfCol(row, (int8_t)pColInfo->info.type, TD_MEM_ROW_HEAD_SIZE + pSchema->columns[j].offset);
|
||||
tdGetRowDataOfCol(dataRow, (int8_t)pColInfo->info.type, TD_DATA_ROW_HEAD_SIZE + pSchema->columns[j].offset);
|
||||
switch (pColInfo->info.type) {
|
||||
case TSDB_DATA_TYPE_BINARY:
|
||||
case TSDB_DATA_TYPE_NCHAR:
|
||||
|
|
Loading…
Reference in New Issue