fix TD-33219 for normal table error case

This commit is contained in:
pengrongkun94@qq.com 2024-12-20 18:32:20 +08:00
parent 3462292780
commit 6f65247e6c
1 changed files with 1 additions and 1 deletions

View File

@ -2201,7 +2201,7 @@ int taos_stmt2_bind_param(TAOS_STMT2 *stmt, TAOS_STMT2_BINDV *bindv, int32_t col
if (code) { if (code) {
goto out; goto out;
} }
} else { } else if (pStmt->bInfo.tbType == TSDB_CHILD_TABLE && pStmt->sql.autoCreateTbl) {
code = stmtSetTbTags2(stmt, NULL); code = stmtSetTbTags2(stmt, NULL);
if (code) { if (code) {
return code; return code;