From fdee112ae4c970baa6ce83b0b834b1b6a13cb69b Mon Sep 17 00:00:00 2001 From: wangmm0220 Date: Fri, 5 May 2023 17:31:08 +0800 Subject: [PATCH] fix:[TS-3277]table not exist if drop stable in another client when insert data using schemaless interface --- source/client/src/clientSml.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/client/src/clientSml.c b/source/client/src/clientSml.c index 2d86f1989d..2fb20aca1b 100644 --- a/source/client/src/clientSml.c +++ b/source/client/src/clientSml.c @@ -1335,6 +1335,8 @@ static int32_t smlInsertData(SSmlHandle *info) { } taosArrayPush(info->pRequest->tableList, &pName); + tstrncpy(pName.tname, tableData->childTableName, strlen(tableData->childTableName) + 1); + SRequestConnInfo conn = {0}; conn.pTrans = info->taos->pAppInfo->pTransporter; conn.requestId = info->pRequest->requestId;