refactor: do some internal refactor.
This commit is contained in:
parent
aba3ea28b5
commit
3e6bb05581
|
@ -500,7 +500,11 @@ int taos_fetch_block_s(TAOS_RES *res, int *numOfRows, TAOS_ROW *rows) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
doFetchRows(pRequest, false, true);
|
#if SYNC_ON_TOP_OF_ASYNC
|
||||||
|
doAsyncFetchRow(pRequest, false, true);
|
||||||
|
#else
|
||||||
|
doFetchRows(pRequest, true, true);
|
||||||
|
#endif
|
||||||
|
|
||||||
// TODO refactor
|
// TODO refactor
|
||||||
SReqResultInfo *pResultInfo = &pRequest->body.resInfo;
|
SReqResultInfo *pResultInfo = &pRequest->body.resInfo;
|
||||||
|
|
Loading…
Reference in New Issue