From 019f03af09e02aeaab2e031c69341910eca9f2d0 Mon Sep 17 00:00:00 2001 From: xjzhou Date: Thu, 4 Jul 2024 18:00:18 +0800 Subject: [PATCH] fix: will not create table using restful --- src/benchInsert.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/benchInsert.c b/src/benchInsert.c index f96a6e31..8215fb2e 100644 --- a/src/benchInsert.c +++ b/src/benchInsert.c @@ -34,7 +34,8 @@ static int getSuperTableFromServerRest( SDataBase* database, SSuperTable* stbInfo, char *command) { - return -1; + // TODO(zero): it will create super table based on this error code. + return TSDB_CODE_NOT_FOUND; // TODO(me): finish full implementation #if 0 int sockfd = createSockFd();