From eb68f09b87b3156463bb15d7d6f83553f9ec2689 Mon Sep 17 00:00:00 2001 From: wangmm0220 Date: Tue, 22 Feb 2022 15:12:37 +0800 Subject: [PATCH] fix error in windows --- src/query/src/qUtil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/query/src/qUtil.c b/src/query/src/qUtil.c index 22bdefd59e..b4433e21a3 100644 --- a/src/query/src/qUtil.c +++ b/src/query/src/qUtil.c @@ -205,7 +205,7 @@ SResultRowPool* initResultRowPool(size_t size) { qError("ResultRow blockSize is too large:%" PRId64, tmp); tmp = 128*1024*1024; } - p->blockSize = tmp; + p->blockSize = (int32_t)tmp; p->position.pos = 0; p->pData = taosArrayInit(8, POINTER_BYTES); -- GitLab