From 68a9a1fc96bd65639d1006592b15416abd12024c Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Sun, 25 Apr 2021 21:56:25 +0800 Subject: [PATCH] [td-225]fix compiler error. --- src/client/src/tscLocalMerge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/src/tscLocalMerge.c b/src/client/src/tscLocalMerge.c index a2af207e1e..9dc0369dda 100644 --- a/src/client/src/tscLocalMerge.c +++ b/src/client/src/tscLocalMerge.c @@ -866,7 +866,7 @@ bool needToMergeRv(SSDataBlock* pBlock, SArray* columnIndexList, int32_t index, int32_t ret = 0; size_t size = taosArrayGetSize(columnIndexList); if (size > 0) { - ret = compare_aRv(pBlock, columnIndexList, size, index, buf, TSDB_ORDER_ASC); + ret = compare_aRv(pBlock, columnIndexList, (int32_t) size, index, buf, TSDB_ORDER_ASC); } // if ret == 0, means the result belongs to the same group -- GitLab