refact test files
This commit is contained in:
parent
7a2fd45652
commit
45391bcdb6
|
@ -2,7 +2,7 @@
|
||||||
add_subdirectory(acct)
|
add_subdirectory(acct)
|
||||||
# add_subdirectory(auth)
|
# add_subdirectory(auth)
|
||||||
# add_subdirectory(balance)
|
# add_subdirectory(balance)
|
||||||
# add_subdirectory(cluster)
|
add_subdirectory(cluster)
|
||||||
add_subdirectory(db)
|
add_subdirectory(db)
|
||||||
add_subdirectory(dnode)
|
add_subdirectory(dnode)
|
||||||
# add_subdirectory(func)
|
# add_subdirectory(func)
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
add_executable(dndTestCluster "")
|
add_executable(dnode_test_cluster "")
|
||||||
|
|
||||||
target_sources(dndTestCluster
|
target_sources(dnode_test_cluster
|
||||||
PRIVATE
|
PRIVATE
|
||||||
"cluster.cpp"
|
"cluster.cpp"
|
||||||
"../sut/deploy.cpp"
|
"../sut/deploy.cpp"
|
||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(
|
target_link_libraries(
|
||||||
dndTestCluster
|
dnode_test_cluster
|
||||||
PUBLIC dnode
|
PUBLIC dnode
|
||||||
PUBLIC util
|
PUBLIC util
|
||||||
PUBLIC os
|
PUBLIC os
|
||||||
PUBLIC gtest_main
|
PUBLIC gtest_main
|
||||||
)
|
)
|
||||||
|
|
||||||
target_include_directories(dndTestCluster
|
target_include_directories(dnode_test_cluster
|
||||||
PUBLIC
|
PUBLIC
|
||||||
"${CMAKE_SOURCE_DIR}/include/server/dnode/mgmt"
|
"${CMAKE_SOURCE_DIR}/include/server/dnode/mgmt"
|
||||||
"${CMAKE_CURRENT_SOURCE_DIR}/../../inc"
|
"${CMAKE_CURRENT_SOURCE_DIR}/../../inc"
|
||||||
|
@ -24,6 +24,6 @@ target_include_directories(dndTestCluster
|
||||||
enable_testing()
|
enable_testing()
|
||||||
|
|
||||||
add_test(
|
add_test(
|
||||||
NAME dndTestCluster
|
NAME dnode_test_cluster
|
||||||
COMMAND dndTestCluster
|
COMMAND dnode_test_cluster
|
||||||
)
|
)
|
||||||
|
|
|
@ -13,154 +13,161 @@
|
||||||
|
|
||||||
class DndTestCluster : public ::testing::Test {
|
class DndTestCluster : public ::testing::Test {
|
||||||
protected:
|
protected:
|
||||||
void SetUp() override {}
|
static SServer* CreateServer(const char* path, const char* fqdn, uint16_t port, const char* firstEp) {
|
||||||
void TearDown() override {}
|
SServer* pServer = createServer(path, fqdn, port, firstEp);
|
||||||
|
ASSERT(pServer);
|
||||||
|
return pServer;
|
||||||
|
}
|
||||||
|
|
||||||
static void SetUpTestSuite() {
|
static void SetUpTestSuite() {
|
||||||
const char* user = "root";
|
initLog("/tmp/tdlog");
|
||||||
const char* pass = "taosdata";
|
|
||||||
const char* path = "/tmp/dndTestCluster";
|
|
||||||
const char* fqdn = "localhost";
|
|
||||||
uint16_t port = 9521;
|
|
||||||
|
|
||||||
pServer = createServer(path, fqdn, port);
|
const char* fqdn = "localhost";
|
||||||
ASSERT(pServer);
|
const char* firstEp = "localhost:9030";
|
||||||
pClient = createClient(user, pass, fqdn, port);
|
pServer = CreateServer("/tmp/dnode_test_cluster", fqdn, 9030, firstEp);
|
||||||
|
pClient = createClient("root", "taosdata", fqdn, 9030);
|
||||||
|
taosMsleep(1100);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void TearDownTestSuite() {
|
static void TearDownTestSuite() {
|
||||||
stopServer(pServer);
|
stopServer(pServer);
|
||||||
dropClient(pClient);
|
dropClient(pClient);
|
||||||
|
pServer = NULL;
|
||||||
|
pClient = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static SServer* pServer;
|
static SServer* pServer;
|
||||||
static SClient* pClient;
|
static SClient* pClient;
|
||||||
static int32_t connId;
|
static int32_t connId;
|
||||||
|
|
||||||
|
public:
|
||||||
|
void SetUp() override {}
|
||||||
|
void TearDown() override {}
|
||||||
|
|
||||||
|
void SendTheCheckShowMetaMsg(int8_t showType, const char* showName, int32_t columns, const char* db) {
|
||||||
|
SShowMsg* pShow = (SShowMsg*)rpcMallocCont(sizeof(SShowMsg));
|
||||||
|
pShow->type = showType;
|
||||||
|
if (db != NULL) {
|
||||||
|
strcpy(pShow->db, db);
|
||||||
|
}
|
||||||
|
SRpcMsg showRpcMsg = {0};
|
||||||
|
showRpcMsg.pCont = pShow;
|
||||||
|
showRpcMsg.contLen = sizeof(SShowMsg);
|
||||||
|
showRpcMsg.msgType = TSDB_MSG_TYPE_SHOW;
|
||||||
|
|
||||||
|
sendMsg(pClient, &showRpcMsg);
|
||||||
|
ASSERT_NE(pClient->pRsp, nullptr);
|
||||||
|
ASSERT_EQ(pClient->pRsp->code, 0);
|
||||||
|
ASSERT_NE(pClient->pRsp->pCont, nullptr);
|
||||||
|
|
||||||
|
SShowRsp* pShowRsp = (SShowRsp*)pClient->pRsp->pCont;
|
||||||
|
ASSERT_NE(pShowRsp, nullptr);
|
||||||
|
pShowRsp->showId = htonl(pShowRsp->showId);
|
||||||
|
pMeta = &pShowRsp->tableMeta;
|
||||||
|
pMeta->numOfTags = htonl(pMeta->numOfTags);
|
||||||
|
pMeta->numOfColumns = htonl(pMeta->numOfColumns);
|
||||||
|
pMeta->sversion = htonl(pMeta->sversion);
|
||||||
|
pMeta->tversion = htonl(pMeta->tversion);
|
||||||
|
pMeta->tuid = htobe64(pMeta->tuid);
|
||||||
|
pMeta->suid = htobe64(pMeta->suid);
|
||||||
|
|
||||||
|
showId = pShowRsp->showId;
|
||||||
|
|
||||||
|
EXPECT_NE(pShowRsp->showId, 0);
|
||||||
|
EXPECT_STREQ(pMeta->tbFname, showName);
|
||||||
|
EXPECT_EQ(pMeta->numOfTags, 0);
|
||||||
|
EXPECT_EQ(pMeta->numOfColumns, columns);
|
||||||
|
EXPECT_EQ(pMeta->precision, 0);
|
||||||
|
EXPECT_EQ(pMeta->tableType, 0);
|
||||||
|
EXPECT_EQ(pMeta->update, 0);
|
||||||
|
EXPECT_EQ(pMeta->sversion, 0);
|
||||||
|
EXPECT_EQ(pMeta->tversion, 0);
|
||||||
|
EXPECT_EQ(pMeta->tuid, 0);
|
||||||
|
EXPECT_EQ(pMeta->suid, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
void CheckSchema(int32_t index, int8_t type, int32_t bytes, const char* name) {
|
||||||
|
SSchema* pSchema = &pMeta->pSchema[index];
|
||||||
|
pSchema->bytes = htons(pSchema->bytes);
|
||||||
|
EXPECT_EQ(pSchema->colId, 0);
|
||||||
|
EXPECT_EQ(pSchema->type, type);
|
||||||
|
EXPECT_EQ(pSchema->bytes, bytes);
|
||||||
|
EXPECT_STREQ(pSchema->name, name);
|
||||||
|
}
|
||||||
|
|
||||||
|
void SendThenCheckShowRetrieveMsg(int32_t rows) {
|
||||||
|
SRetrieveTableMsg* pRetrieve = (SRetrieveTableMsg*)rpcMallocCont(sizeof(SRetrieveTableMsg));
|
||||||
|
pRetrieve->showId = htonl(showId);
|
||||||
|
pRetrieve->free = 0;
|
||||||
|
|
||||||
|
SRpcMsg retrieveRpcMsg = {0};
|
||||||
|
retrieveRpcMsg.pCont = pRetrieve;
|
||||||
|
retrieveRpcMsg.contLen = sizeof(SRetrieveTableMsg);
|
||||||
|
retrieveRpcMsg.msgType = TSDB_MSG_TYPE_SHOW_RETRIEVE;
|
||||||
|
|
||||||
|
sendMsg(pClient, &retrieveRpcMsg);
|
||||||
|
|
||||||
|
ASSERT_NE(pClient->pRsp, nullptr);
|
||||||
|
ASSERT_EQ(pClient->pRsp->code, 0);
|
||||||
|
ASSERT_NE(pClient->pRsp->pCont, nullptr);
|
||||||
|
|
||||||
|
pRetrieveRsp = (SRetrieveTableRsp*)pClient->pRsp->pCont;
|
||||||
|
ASSERT_NE(pRetrieveRsp, nullptr);
|
||||||
|
pRetrieveRsp->numOfRows = htonl(pRetrieveRsp->numOfRows);
|
||||||
|
pRetrieveRsp->offset = htobe64(pRetrieveRsp->offset);
|
||||||
|
pRetrieveRsp->useconds = htobe64(pRetrieveRsp->useconds);
|
||||||
|
pRetrieveRsp->compLen = htonl(pRetrieveRsp->compLen);
|
||||||
|
|
||||||
|
EXPECT_EQ(pRetrieveRsp->numOfRows, rows);
|
||||||
|
EXPECT_EQ(pRetrieveRsp->offset, 0);
|
||||||
|
EXPECT_EQ(pRetrieveRsp->useconds, 0);
|
||||||
|
// EXPECT_EQ(pRetrieveRsp->completed, completed);
|
||||||
|
EXPECT_EQ(pRetrieveRsp->precision, TSDB_TIME_PRECISION_MILLI);
|
||||||
|
EXPECT_EQ(pRetrieveRsp->compressed, 0);
|
||||||
|
EXPECT_EQ(pRetrieveRsp->reserved, 0);
|
||||||
|
EXPECT_EQ(pRetrieveRsp->compLen, 0);
|
||||||
|
|
||||||
|
pData = pRetrieveRsp->data;
|
||||||
|
pos = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void CheckInt32() {
|
||||||
|
int32_t data = *((int32_t*)(pData + pos));
|
||||||
|
pos += sizeof(int32_t);
|
||||||
|
EXPECT_GT(data, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
void CheckTimestamp() {
|
||||||
|
int64_t data = *((int64_t*)(pData + pos));
|
||||||
|
pos += sizeof(int64_t);
|
||||||
|
EXPECT_GT(data, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
void CheckBinary(int32_t len) {
|
||||||
|
pos += sizeof(VarDataLenT);
|
||||||
|
char* data = (char*)(pData + pos);
|
||||||
|
pos += len;
|
||||||
|
}
|
||||||
|
|
||||||
|
int32_t showId;
|
||||||
|
STableMetaMsg* pMeta;
|
||||||
|
SRetrieveTableRsp* pRetrieveRsp;
|
||||||
|
char* pData;
|
||||||
|
int32_t pos;
|
||||||
};
|
};
|
||||||
|
|
||||||
SServer* DndTestCluster::pServer;
|
SServer* DndTestCluster::pServer;
|
||||||
SClient* DndTestCluster::pClient;
|
SClient* DndTestCluster::pClient;
|
||||||
int32_t DndTestCluster::connId;
|
int32_t DndTestCluster::connId;
|
||||||
|
|
||||||
TEST_F(DndTestCluster, ShowCluster) {
|
TEST_F(DndTestCluster, 01_ShowCluster) {
|
||||||
ASSERT_NE(pClient, nullptr);
|
SendTheCheckShowMetaMsg(TSDB_MGMT_TABLE_CLUSTER, "show cluster", 3, NULL);
|
||||||
int32_t showId = 0;
|
CheckSchema(0, TSDB_DATA_TYPE_INT, 4, "id");
|
||||||
|
CheckSchema(1, TSDB_DATA_TYPE_BINARY, TSDB_CLUSTER_ID_LEN + VARSTR_HEADER_SIZE, "name");
|
||||||
|
CheckSchema(2, TSDB_DATA_TYPE_TIMESTAMP, 8, "create time");
|
||||||
|
|
||||||
{
|
SendThenCheckShowRetrieveMsg(1);
|
||||||
SShowMsg* pReq = (SShowMsg*)rpcMallocCont(sizeof(SShowMsg));
|
CheckInt32();
|
||||||
pReq->type = TSDB_MGMT_TABLE_CLUSTER;
|
CheckBinary(TSDB_CLUSTER_ID_LEN);
|
||||||
strcpy(pReq->db, "");
|
CheckTimestamp();
|
||||||
|
|
||||||
SRpcMsg rpcMsg = {0};
|
|
||||||
rpcMsg.pCont = pReq;
|
|
||||||
rpcMsg.contLen = sizeof(SShowMsg);
|
|
||||||
rpcMsg.msgType = TSDB_MSG_TYPE_SHOW;
|
|
||||||
|
|
||||||
sendMsg(pClient, &rpcMsg);
|
|
||||||
SRpcMsg* pMsg = pClient->pRsp;
|
|
||||||
ASSERT_NE(pMsg, nullptr);
|
|
||||||
|
|
||||||
SShowRsp* pRsp = (SShowRsp*)pMsg->pCont;
|
|
||||||
ASSERT_NE(pRsp, nullptr);
|
|
||||||
pRsp->showId = htonl(pRsp->showId);
|
|
||||||
STableMetaMsg* pMeta = &pRsp->tableMeta;
|
|
||||||
pMeta->contLen = htonl(pMeta->contLen);
|
|
||||||
pMeta->numOfColumns = htons(pMeta->numOfColumns);
|
|
||||||
pMeta->sversion = htons(pMeta->sversion);
|
|
||||||
pMeta->tversion = htons(pMeta->tversion);
|
|
||||||
pMeta->tid = htonl(pMeta->tid);
|
|
||||||
pMeta->uid = htobe64(pMeta->uid);
|
|
||||||
pMeta->suid = htobe64(pMeta->suid);
|
|
||||||
|
|
||||||
showId = pRsp->showId;
|
|
||||||
|
|
||||||
EXPECT_NE(pRsp->showId, 0);
|
|
||||||
EXPECT_EQ(pMeta->contLen, 0);
|
|
||||||
EXPECT_STREQ(pMeta->tbFname, "show cluster");
|
|
||||||
EXPECT_EQ(pMeta->numOfTags, 0);
|
|
||||||
EXPECT_EQ(pMeta->precision, 0);
|
|
||||||
EXPECT_EQ(pMeta->tableType, 0);
|
|
||||||
EXPECT_EQ(pMeta->numOfColumns, 3);
|
|
||||||
EXPECT_EQ(pMeta->sversion, 0);
|
|
||||||
EXPECT_EQ(pMeta->tversion, 0);
|
|
||||||
EXPECT_EQ(pMeta->tid, 0);
|
|
||||||
EXPECT_EQ(pMeta->uid, 0);
|
|
||||||
EXPECT_STREQ(pMeta->sTableName, "");
|
|
||||||
EXPECT_EQ(pMeta->suid, 0);
|
|
||||||
|
|
||||||
SSchema* pSchema = NULL;
|
|
||||||
pSchema = &pMeta->pSchema[0];
|
|
||||||
pSchema->bytes = htons(pSchema->bytes);
|
|
||||||
EXPECT_EQ(pSchema->colId, 0);
|
|
||||||
EXPECT_EQ(pSchema->type, TSDB_DATA_TYPE_INT);
|
|
||||||
EXPECT_EQ(pSchema->bytes, 4);
|
|
||||||
EXPECT_STREQ(pSchema->name, "id");
|
|
||||||
|
|
||||||
pSchema = &pMeta->pSchema[1];
|
|
||||||
pSchema->bytes = htons(pSchema->bytes);
|
|
||||||
EXPECT_EQ(pSchema->colId, 0);
|
|
||||||
EXPECT_EQ(pSchema->type, TSDB_DATA_TYPE_BINARY);
|
|
||||||
EXPECT_EQ(pSchema->bytes, TSDB_CLUSTER_ID_LEN + VARSTR_HEADER_SIZE);
|
|
||||||
EXPECT_STREQ(pSchema->name, "name");
|
|
||||||
|
|
||||||
pSchema = &pMeta->pSchema[2];
|
|
||||||
pSchema->bytes = htons(pSchema->bytes);
|
|
||||||
EXPECT_EQ(pSchema->colId, 0);
|
|
||||||
EXPECT_EQ(pSchema->type, TSDB_DATA_TYPE_TIMESTAMP);
|
|
||||||
EXPECT_EQ(pSchema->bytes, 8);
|
|
||||||
EXPECT_STREQ(pSchema->name, "create_time");
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
SRetrieveTableMsg* pReq = (SRetrieveTableMsg*)rpcMallocCont(sizeof(SRetrieveTableMsg));
|
|
||||||
pReq->showId = htonl(showId);
|
|
||||||
pReq->free = 0;
|
|
||||||
|
|
||||||
SRpcMsg rpcMsg = {0};
|
|
||||||
rpcMsg.pCont = pReq;
|
|
||||||
rpcMsg.contLen = sizeof(SRetrieveTableMsg);
|
|
||||||
rpcMsg.msgType = TSDB_MSG_TYPE_SHOW_RETRIEVE;
|
|
||||||
|
|
||||||
sendMsg(pClient, &rpcMsg);
|
|
||||||
SRpcMsg* pMsg = pClient->pRsp;
|
|
||||||
ASSERT_NE(pMsg, nullptr);
|
|
||||||
ASSERT_EQ(pMsg->code, 0);
|
|
||||||
|
|
||||||
SRetrieveTableRsp* pRsp = (SRetrieveTableRsp*)pMsg->pCont;
|
|
||||||
ASSERT_NE(pRsp, nullptr);
|
|
||||||
pRsp->numOfRows = htonl(pRsp->numOfRows);
|
|
||||||
pRsp->offset = htobe64(pRsp->offset);
|
|
||||||
pRsp->useconds = htobe64(pRsp->useconds);
|
|
||||||
pRsp->compLen = htonl(pRsp->compLen);
|
|
||||||
|
|
||||||
EXPECT_EQ(pRsp->numOfRows, 1);
|
|
||||||
EXPECT_EQ(pRsp->offset, 0);
|
|
||||||
EXPECT_EQ(pRsp->useconds, 0);
|
|
||||||
EXPECT_EQ(pRsp->completed, 1);
|
|
||||||
EXPECT_EQ(pRsp->precision, TSDB_TIME_PRECISION_MILLI);
|
|
||||||
EXPECT_EQ(pRsp->compressed, 0);
|
|
||||||
EXPECT_EQ(pRsp->reserved, 0);
|
|
||||||
EXPECT_EQ(pRsp->compLen, 0);
|
|
||||||
|
|
||||||
char* pData = pRsp->data;
|
|
||||||
int32_t pos = 0;
|
|
||||||
|
|
||||||
int32_t id = *((int32_t*)(pData + pos));
|
|
||||||
pos += sizeof(int32_t);
|
|
||||||
|
|
||||||
int32_t nameLen = varDataLen(pData + pos);
|
|
||||||
pos += sizeof(VarDataLenT);
|
|
||||||
|
|
||||||
char* name = (char*)(pData + pos);
|
|
||||||
pos += TSDB_CLUSTER_ID_LEN;
|
|
||||||
|
|
||||||
int64_t create_time = *((int64_t*)(pData + pos));
|
|
||||||
pos += sizeof(int64_t);
|
|
||||||
|
|
||||||
EXPECT_NE(id, 0);
|
|
||||||
EXPECT_EQ(nameLen, 36);
|
|
||||||
EXPECT_STRNE(name, "");
|
|
||||||
EXPECT_GT(create_time, 0);
|
|
||||||
printf("--- id:%d nameLen:%d name:%s time:%" PRId64 " --- \n", id, nameLen, name, create_time);
|
|
||||||
}
|
|
||||||
}
|
}
|
|
@ -81,8 +81,8 @@ class DndTestDnode : public ::testing::Test {
|
||||||
pMeta->numOfTags = htonl(pMeta->numOfTags);
|
pMeta->numOfTags = htonl(pMeta->numOfTags);
|
||||||
pMeta->numOfColumns = htonl(pMeta->numOfColumns);
|
pMeta->numOfColumns = htonl(pMeta->numOfColumns);
|
||||||
pMeta->sversion = htonl(pMeta->sversion);
|
pMeta->sversion = htonl(pMeta->sversion);
|
||||||
pMeta->tversion = htons(pMeta->tversion);
|
pMeta->tversion = htonl(pMeta->tversion);
|
||||||
pMeta->tuid = htonl(pMeta->tuid);
|
pMeta->tuid = htobe64(pMeta->tuid);
|
||||||
pMeta->suid = htobe64(pMeta->suid);
|
pMeta->suid = htobe64(pMeta->suid);
|
||||||
|
|
||||||
showId = pShowRsp->showId;
|
showId = pShowRsp->showId;
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
add_executable(dndTestShow "")
|
add_executable(dnode_test_show "")
|
||||||
|
|
||||||
target_sources(dndTestShow
|
target_sources(dnode_test_show
|
||||||
PRIVATE
|
PRIVATE
|
||||||
"show.cpp"
|
"show.cpp"
|
||||||
"../sut/deploy.cpp"
|
"../sut/deploy.cpp"
|
||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(
|
target_link_libraries(
|
||||||
dndTestShow
|
dnode_test_show
|
||||||
PUBLIC dnode
|
PUBLIC dnode
|
||||||
PUBLIC util
|
PUBLIC util
|
||||||
PUBLIC os
|
PUBLIC os
|
||||||
PUBLIC gtest_main
|
PUBLIC gtest_main
|
||||||
)
|
)
|
||||||
|
|
||||||
target_include_directories(dndTestShow
|
target_include_directories(dnode_test_show
|
||||||
PUBLIC
|
PUBLIC
|
||||||
"${CMAKE_SOURCE_DIR}/include/server/dnode/mgmt"
|
"${CMAKE_SOURCE_DIR}/include/server/dnode/mgmt"
|
||||||
"${CMAKE_CURRENT_SOURCE_DIR}/../../inc"
|
"${CMAKE_CURRENT_SOURCE_DIR}/../../inc"
|
||||||
|
@ -24,6 +24,6 @@ target_include_directories(dndTestShow
|
||||||
enable_testing()
|
enable_testing()
|
||||||
|
|
||||||
add_test(
|
add_test(
|
||||||
NAME dndTestShow
|
NAME dnode_test_show
|
||||||
COMMAND dndTestShow
|
COMMAND dnode_test_show
|
||||||
)
|
)
|
||||||
|
|
|
@ -154,11 +154,11 @@ static int32_t mndGetClusterMeta(SMnodeMsg *pMsg, SShowObj *pShow, STableMetaMsg
|
||||||
|
|
||||||
pShow->bytes[cols] = 8;
|
pShow->bytes[cols] = 8;
|
||||||
pSchema[cols].type = TSDB_DATA_TYPE_TIMESTAMP;
|
pSchema[cols].type = TSDB_DATA_TYPE_TIMESTAMP;
|
||||||
strcpy(pSchema[cols].name, "create_time");
|
strcpy(pSchema[cols].name, "create time");
|
||||||
pSchema[cols].bytes = htons(pShow->bytes[cols]);
|
pSchema[cols].bytes = htons(pShow->bytes[cols]);
|
||||||
cols++;
|
cols++;
|
||||||
|
|
||||||
pMeta->numOfColumns = htons(cols);
|
pMeta->numOfColumns = htonl(cols);
|
||||||
strcpy(pMeta->tbFname, mndShowStr(pShow->type));
|
strcpy(pMeta->tbFname, mndShowStr(pShow->type));
|
||||||
pShow->numOfColumns = cols;
|
pShow->numOfColumns = cols;
|
||||||
|
|
||||||
|
|
|
@ -291,7 +291,7 @@ char *mndShowStr(int32_t showType) {
|
||||||
case TSDB_MGMT_TABLE_VNODES:
|
case TSDB_MGMT_TABLE_VNODES:
|
||||||
return "show vnodes";
|
return "show vnodes";
|
||||||
case TSDB_MGMT_TABLE_CLUSTER:
|
case TSDB_MGMT_TABLE_CLUSTER:
|
||||||
return "show clusters";
|
return "show cluster";
|
||||||
case TSDB_MGMT_TABLE_STREAMTABLES:
|
case TSDB_MGMT_TABLE_STREAMTABLES:
|
||||||
return "show streamtables";
|
return "show streamtables";
|
||||||
case TSDB_MGMT_TABLE_TP:
|
case TSDB_MGMT_TABLE_TP:
|
||||||
|
|
Loading…
Reference in New Issue