fix: stmt memory leak

This commit is contained in:
Xiaoyu Wang 2023-01-12 13:57:47 +08:00
parent 7466b5042d
commit 0e061fb53c
1 changed files with 1 additions and 1 deletions

View File

@ -1556,7 +1556,7 @@ static int32_t translateRepeatScanFunc(STranslateContext* pCxt, SFunctionNode* p
}
if (NULL != pSelect->pPartitionByList) {
return generateSyntaxErrMsgExt(&pCxt->msgBuf, TSDB_CODE_PAR_NOT_ALLOWED_FUNC,
"%s function is not supported in fill query", pFunc->functionName);
"%s function is not supported in partition query", pFunc->functionName);
}
return TSDB_CODE_SUCCESS;
}