From 69531c11d01210e916ae10a9c889b3f1cb3b9613 Mon Sep 17 00:00:00 2001 From: yihaoDeng Date: Fri, 21 Oct 2022 11:44:28 +0800 Subject: [PATCH] add executor to systable filter --- source/libs/executor/src/scanoperator.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/libs/executor/src/scanoperator.c b/source/libs/executor/src/scanoperator.c index 62d5f417d3..5c1b3f0f60 100644 --- a/source/libs/executor/src/scanoperator.c +++ b/source/libs/executor/src/scanoperator.c @@ -3401,9 +3401,9 @@ static SSDataBlock* sysTableBuildUserTablesByUids(SOperatorInfo* pOperator, SArr blockDataDestroy(p); // todo temporarily free the cursor here, the true reason why the free is not valid needs to be found - if (ret != 0) { - doSetOperatorCompleted(pOperator); - } + // if (ret != 0) { + doSetOperatorCompleted(pOperator); + //} pInfo->loadInfo.totalRows += pInfo->pRes->info.rows; return (pInfo->pRes->info.rows == 0) ? NULL : pInfo->pRes; -- GitLab