fix(query): expand the capacity for aggregate operator.

This commit is contained in:
Haojun Liao 2022-05-17 22:42:11 +08:00
parent aefa9bd891
commit 1cc0708d85
1 changed files with 1 additions and 1 deletions

View File

@ -4246,7 +4246,7 @@ SOperatorInfo* createAggregateOperatorInfo(SOperatorInfo* downstream, SExprInfo*
goto _error;
}
int32_t numOfRows = 10;
int32_t numOfRows = 1024;
size_t keyBufSize = sizeof(int64_t) + sizeof(int64_t) + POINTER_BYTES;
initResultSizeInfo(pOperator, numOfRows);