fix(query): fix error in test.

This commit is contained in:
Haojun Liao 2024-08-27 18:44:42 +08:00
parent d3f6892345
commit 25bfcb7908
1 changed files with 2 additions and 1 deletions

View File

@ -2967,7 +2967,8 @@ void runSingleTest(char* caseName, SJoinTestParam* param) {
jtCtx.startTsUs = taosGetTimestampUs();
while (true) {
SSDataBlock* pBlock = jtCtx.pJoinOp->fpSet.getNextFn(jtCtx.pJoinOp);
SSDataBlock* pBlock = NULL;
int32_t code = jtCtx.pJoinOp->fpSet.getNextFn(jtCtx.pJoinOp, &pBlock);
if (NULL == pBlock) {
checkJoinDone(caseName);
break;