make it pass compile

This commit is contained in:
Hongze Cheng 2022-11-28 16:45:15 +08:00
parent 086b2d58c2
commit 4f8031821b
1 changed files with 4 additions and 0 deletions

View File

@ -50,9 +50,13 @@ int tsdbInsertData(STsdb *pTsdb, int64_t version, SSubmitReq *pMsg, SSubmitRsp *
SSubmitBlkRsp r = {0};
tGetSubmitMsgNext(&msgIter, &pBlock);
if (pBlock == NULL) break;
#if 0
if ((terrno = tsdbInsertTableData(pTsdb, version, &msgIter, pBlock, &r)) < 0) {
return -1;
}
#else
ASSERT(0);
#endif
numOfRows += msgIter.numOfRows;
}