fix merge import bug in JIRA TBASE-1097
This commit is contained in:
parent
c012704a5b
commit
9cdbc4848a
|
@ -1479,6 +1479,7 @@ int vnodeImportDataToCache(SImportInfo *pImport, const char *payload, const int
|
||||||
payloadIter = rows;
|
payloadIter = rows;
|
||||||
code = TSDB_CODE_ACTION_IN_PROGRESS;
|
code = TSDB_CODE_ACTION_IN_PROGRESS;
|
||||||
pImport->commit = 1;
|
pImport->commit = 1;
|
||||||
|
// TODO: Fix here
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1507,7 +1508,7 @@ int vnodeImportDataToCache(SImportInfo *pImport, const char *payload, const int
|
||||||
int pointsLeft = pInfo->cacheBlocks[cacheIter.slot]->numOfPoints - cacheIter.pos;
|
int pointsLeft = pInfo->cacheBlocks[cacheIter.slot]->numOfPoints - cacheIter.pos;
|
||||||
if (pointsLeft > 0) {
|
if (pointsLeft > 0) {
|
||||||
for (int col = 0; col < pObj->numOfColumns; col++) {
|
for (int col = 0; col < pObj->numOfColumns; col++) {
|
||||||
memcpy((void *)(pNewBlock->offset[col]),
|
memcpy((void *)(pNewBlock->offset[col] + pObj->schema[col].bytes*cacheIter.pos),
|
||||||
pInfo->cacheBlocks[cacheIter.slot]->offset[col] + pObj->schema[col].bytes * cacheIter.pos,
|
pInfo->cacheBlocks[cacheIter.slot]->offset[col] + pObj->schema[col].bytes * cacheIter.pos,
|
||||||
pObj->schema[col].bytes * pointsLeft);
|
pObj->schema[col].bytes * pointsLeft);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue