Merge pull request #7461 from taosdata/hotfix/td-6155

[TD-6155]<fix>:free tag expr at the end of sql parse
This commit is contained in:
dapan1121 2021-08-20 08:58:10 +08:00 committed by GitHub
commit fb1ecd9c72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -4884,10 +4884,6 @@ static void cleanQueryExpr(SCondExpr* pCondExpr) {
tSqlExprDestroy(pCondExpr->pTableCond);
}
if (pCondExpr->pTagCond) {
tSqlExprDestroy(pCondExpr->pTagCond);
}
if (pCondExpr->pColumnCond) {
tSqlExprDestroy(pCondExpr->pColumnCond);
}