From 95ec2860bed3386de25c49338aa77204375be0ec Mon Sep 17 00:00:00 2001 From: Alex Duan <417921451@qq.com> Date: Sun, 10 Apr 2022 19:38:41 +0800 Subject: [PATCH] [TS-238](tsdb): remove worthless information --- src/client/src/tscServer.c | 5 ----- src/inc/taosmsg.h | 3 +-- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/src/client/src/tscServer.c b/src/client/src/tscServer.c index af2e6818ba..7535801b65 100644 --- a/src/client/src/tscServer.c +++ b/src/client/src/tscServer.c @@ -3316,11 +3316,6 @@ int tscGetSTableVgroupInfo(SSqlObj *pSql, SQueryInfo* pQueryInfo) { return code; } -// Super Table -int buildSTableDelDataMsg(SSqlObj *pSql, SSqlCmd* pCmd, SQueryInfo* pQueryInfo, STableMetaInfo* pTableMetaInfo, SSqlInfo *pInfo) { - return 0; -} - int tscBuildDelDataMsg(SSqlObj *pSql, SSqlInfo *pInfo) { SSqlCmd *pCmd = &pSql->cmd; SQueryInfo *pQueryInfo = tscGetQueryInfo(pCmd); diff --git a/src/inc/taosmsg.h b/src/inc/taosmsg.h index 00eab05e07..1a8907efab 100644 --- a/src/inc/taosmsg.h +++ b/src/inc/taosmsg.h @@ -420,7 +420,6 @@ typedef struct { int32_t vgId; } SDropVnodeMsg, SSyncVnodeMsg, SCompactVnodeMsg; -// N.B. JUST Utility for DEMO Implementation(not formal definition) typedef struct { int32_t contLen; int32_t vgId; @@ -437,7 +436,7 @@ typedef struct { char tableFname[TSDB_TABLE_FNAME_LEN]; STimeWindow span[]; } SDeleteDataMsg; -// N.B. JUST Utility for DEMO Implementation(not formal definition) + typedef struct SColIndex { int16_t colId; // column id int16_t colIndex; // column index in colList if it is a normal column or index in tagColList if a tag -- GitLab