fix(query): remove todo

This commit is contained in:
Haojun Liao 2022-12-23 09:42:55 +08:00
parent 884f9dfee1
commit ff01a0d2b5
1 changed files with 2 additions and 0 deletions

View File

@ -504,6 +504,8 @@ bool tLDataIterNextRow(SLDataIter *pIter, const char *idStr) {
if (pBlockData == NULL) { if (pBlockData == NULL) {
goto _exit; goto _exit;
} }
// set start row index
pIter->iRow = pIter->backward? pBlockData->nRow-1:0; pIter->iRow = pIter->backward? pBlockData->nRow-1:0;
} }
} }