From 7e91c54e354dfb72a1cbb88884d26a052cbb56b3 Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Wed, 10 Mar 2021 15:50:36 +0800 Subject: [PATCH] [td-2895] fix compiler error. --- src/query/inc/qExecutor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/query/inc/qExecutor.h b/src/query/inc/qExecutor.h index 001af0825e..0d8870a377 100644 --- a/src/query/inc/qExecutor.h +++ b/src/query/inc/qExecutor.h @@ -102,7 +102,7 @@ typedef struct SGroupResInfo { */ typedef struct SRspResultInfo { int64_t total; // total generated result size in rows - int64_t capacity; // capacity of current result output buffer + int32_t capacity; // capacity of current result output buffer int32_t threshold; // result size threshold in rows. } SRspResultInfo; -- GitLab