[TD-5623]<feature>: fix endian issue

This commit is contained in:
Ganlin Zhao 2021-08-12 09:49:31 +08:00
parent d267d287fd
commit 96e7876ded
1 changed files with 1 additions and 1 deletions

View File

@ -2698,7 +2698,7 @@ static void decompressQueryColData(SSqlRes *pRes, SQueryInfo* pQueryInfo, char *
compressed, NULL, 0);
p += flen;
decompLen +=flen;
pData += compSizes[i];
pData += htonl(compSizes[i];
}
tfree(outputBuf);
}