fix: when db_name != xxx can not be optimized by uid index

This commit is contained in:
slzhou 2023-04-21 15:01:35 +08:00
parent 5531775f8e
commit c971fe1606
1 changed files with 1 additions and 1 deletions

View File

@ -1482,7 +1482,7 @@ static SSDataBlock* sysTableScanUserTables(SOperatorInfo* pOperator) {
pInfo->pIdx->init = 1;
SSDataBlock* blk = sysTableBuildUserTablesByUids(pOperator);
return blk;
} else if ((flt == -2) || (flt == -1)) {
} else if ((flt == -1) || (flt == -2)) {
qDebug("%s failed to get sys table info by idx, scan sys table one by one", GET_TASKID(pTaskInfo));
}
} else if (pCondition != NULL && (pInfo->pIdx != NULL && pInfo->pIdx->init == 1)) {