提交 54d94e1a 编写于 作者: D dapan1121

fix compile err

上级 ff41983d
...@@ -137,7 +137,7 @@ static int64_t doTSBlockIntersect(SSqlObj* pSql, STimeWindow * win) { ...@@ -137,7 +137,7 @@ static int64_t doTSBlockIntersect(SSqlObj* pSql, STimeWindow * win) {
SMergeTsCtx ctxlist[TSDB_MAX_JOIN_TABLE_NUM] = {0}; SMergeTsCtx ctxlist[TSDB_MAX_JOIN_TABLE_NUM] = {0};
SMergeTsCtx* ctxStack[TSDB_MAX_JOIN_TABLE_NUM] = {0}; SMergeTsCtx* ctxStack[TSDB_MAX_JOIN_TABLE_NUM] = {0};
int32_t slot = 0; int32_t slot = 0;
int32_t tableNum = 0; size_t tableNum = 0;
int16_t* tableMIdx = 0; int16_t* tableMIdx = 0;
int32_t equalNum = 0; int32_t equalNum = 0;
int32_t stackidx = 0; int32_t stackidx = 0;
...@@ -925,7 +925,7 @@ static int32_t getIntersectionOfTableTuple(SQueryInfo* pQueryInfo, SSqlObj* pPar ...@@ -925,7 +925,7 @@ static int32_t getIntersectionOfTableTuple(SQueryInfo* pQueryInfo, SSqlObj* pPar
} }
int32_t slot = 0; int32_t slot = 0;
int32_t tableNum = 0; size_t tableNum = 0;
int16_t* tableMIdx = 0; int16_t* tableMIdx = 0;
int32_t equalNum = 0; int32_t equalNum = 0;
int32_t stackidx = 0; int32_t stackidx = 0;
...@@ -1072,7 +1072,7 @@ static int32_t getIntersectionOfTableTuple(SQueryInfo* pQueryInfo, SSqlObj* pPar ...@@ -1072,7 +1072,7 @@ static int32_t getIntersectionOfTableTuple(SQueryInfo* pQueryInfo, SSqlObj* pPar
} }
bool emptyTagList(SArray* resList, int32_t size) { bool emptyTagList(SArray* resList, int32_t size) {
int32_t rsize = taosArrayGetSize(resList); size_t rsize = taosArrayGetSize(resList);
if (rsize != size) { if (rsize != size) {
return true; return true;
} }
...@@ -1231,7 +1231,7 @@ static void tidTagRetrieveCallback(void* param, TAOS_RES* tres, int32_t numOfRow ...@@ -1231,7 +1231,7 @@ static void tidTagRetrieveCallback(void* param, TAOS_RES* tres, int32_t numOfRow
} }
} }
int32_t rsize = taosArrayGetSize(resList); size_t rsize = taosArrayGetSize(resList);
for (int32_t i = 0; i < rsize; ++i) { for (int32_t i = 0; i < rsize; ++i) {
SArray** s = taosArrayGet(resList, i); SArray** s = taosArrayGet(resList, i);
if (*s) { if (*s) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册