fix: typo issue

This commit is contained in:
dapan1121 2023-09-06 14:11:24 +08:00
parent 0b18689fa6
commit 875a081adc
1 changed files with 2 additions and 2 deletions

View File

@ -2895,12 +2895,12 @@ static int32_t tagScanFilterByTagCond(SArray* aUidTags, SNode* pTagCond, SArray*
SScalarParam output = {0};
code = tagScanCreateResultData(&type, numOfTables, &output);
if (TSDB_CODE_SUCCESS == code) {
if (TSDB_CODE_SUCCESS != code) {
return code;
}
code = scalarCalculate(pTagCond, pBlockList, &output);
if (TSDB_CODE_SUCCESS == code) {
if (TSDB_CODE_SUCCESS != code) {
return code;
}