fix compile error in windows

This commit is contained in:
yihaoDeng 2021-01-20 00:40:09 +00:00
parent 0a0e68e208
commit 33b428a4ca
1 changed files with 3 additions and 3 deletions

View File

@ -4401,8 +4401,8 @@ static void freeTableBlockDist(STableBlockDist *pTableBlockDist) {
} }
} }
static int32_t getPercentileFromSortedArray(const SArray* pArray, float rate) { static int32_t getPercentileFromSortedArray(const SArray* pArray, float rate) {
size_t len = taosArrayGetSize(pArray); int32_t len = taosArrayGetSize(pArray);
if (len == 0) { if (len <= 0) {
return 0; return 0;
} }
assert(rate >= 0 && rate <= 1.0); assert(rate >= 0 && rate <= 1.0);
@ -4431,7 +4431,7 @@ static void generateBlockDistResult(STableBlockDist *pTableBlockDist) {
max = MAX(max, rows); max = MAX(max, rows);
totalRows += rows; totalRows += rows;
} }
avg = totalBlocks > 0 ? (int32_t)(((totalRows * 1.0)/totalBlocks)) : 0; avg = totalBlocks > 0 ? (int64_t)(totalRows/totalBlocks) : 0;
taosArraySort(blockInfos, compareBlockInfo); taosArraySort(blockInfos, compareBlockInfo);