Skip to content

Commit

Permalink
fix: will not create table using restful
Browse files Browse the repository at this point in the history
  • Loading branch information
xjzhou committed Jul 4, 2024
1 parent f525e27 commit 019f03a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/benchInsert.c
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 019f03a

Please sign in to comment.