[TD-2740]<fix>: change the password length by using another macro definition.

This commit is contained in:
Haojun Liao 2021-01-14 13:51:56 +08:00
parent 38106d1657
commit f43f35381a
1 changed files with 4 additions and 0 deletions

View File

@ -3207,6 +3207,10 @@ void copyResToQueryResultBuf(SQInfo *pQInfo, SQuery *pQuery) {
// all results in current group have been returned to client, try next group
if (pGroupResInfo->index >= taosArrayGetSize(pGroupResInfo->pRows)) {
// current results of group has been sent to client, try next group
pGroupResInfo->index = 0;
pGroupResInfo->rowId = 0;
taosArrayClear(pGroupResInfo->pRows);
if (mergeGroupResult(pQInfo) != TSDB_CODE_SUCCESS) {
return; // failed to save data in the disk
}