This commit is contained in:
Hongze Cheng 2022-06-04 14:03:05 +00:00
parent 0abe329fce
commit af4aaed01f
1 changed files with 11 additions and 2 deletions

View File

@ -90,7 +90,16 @@ static int32_t tsdbEndCommit(SCommitH *pCHandle) {
static int32_t tsdbCommitTableData(SCommitH *pCHandle, SMemData *pMemData, SBlockIdx *pBlockIdx) { static int32_t tsdbCommitTableData(SCommitH *pCHandle, SMemData *pMemData, SBlockIdx *pBlockIdx) {
int32_t code = 0; int32_t code = 0;
// TODO SMemDataIter iter = {0};
if (pMemData && pBlockIdx) {
// merge
} else if (pMemData) {
// new one
} else {
// save old ones
}
return code; return code;
} }