fix(query): expand buffer size.

This commit is contained in:
Haojun Liao 2022-11-09 14:52:37 +08:00
parent 411371ba48
commit a9167beb91
1 changed files with 1 additions and 1 deletions

View File

@ -586,7 +586,7 @@ static int32_t taosPushLogBuffer(SLogBuff *pLogBuf, const char *msg, int32_t msg
int32_t end = 0;
int32_t remainSize = 0;
static int64_t lostLine = 0;
char tmpBuf[40] = {0};
char tmpBuf[128] = {0};
int32_t tmpBufLen = 0;
if (pLogBuf == NULL || pLogBuf->stop) return -1;