From f3d298c81f6e72bb9df15493d82c977e740a395c Mon Sep 17 00:00:00 2001 From: dapan1121 Date: Mon, 11 Jul 2022 17:51:03 +0800 Subject: [PATCH] fix: fix stmt rerun issue --- source/client/src/clientStmt.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/source/client/src/clientStmt.c b/source/client/src/clientStmt.c index 3df6169591..75567404df 100644 --- a/source/client/src/clientStmt.c +++ b/source/client/src/clientStmt.c @@ -751,11 +751,6 @@ int stmtUpdateTableUid(STscStmt* pStmt, SSubmitRsp* pRsp) { char* key = taosHashGetKey(pIter, &keyLen); STableMeta* pMeta = qGetTableMetaInDataBlock(pBlock); - if (pMeta->uid != pStmt->bInfo.tbUid) { - tscError("table uid %" PRIx64 " mis-match with current table uid %" PRIx64, pMeta->uid, pStmt->bInfo.tbUid); - STMT_ERR_RET(TSDB_CODE_TSC_APP_ERROR); - } - if (pMeta->uid) { pIter = taosHashIterate(pStmt->exec.pBlockHash, pIter); continue;