fix destoryShowCreateTableStmt
This commit is contained in:
parent
59a8fab0d7
commit
084d0ab367
|
@ -7045,7 +7045,7 @@ void destoryShowCreateDatabaseStmt(SNode* pNode) {
|
||||||
|
|
||||||
void destoryShowCreateTableStmt(SNode* pNode) {
|
void destoryShowCreateTableStmt(SNode* pNode) {
|
||||||
STableCfg* pCfg = (STableCfg*)(((SShowCreateTableStmt*)pNode)->pTableCfg);
|
STableCfg* pCfg = (STableCfg*)(((SShowCreateTableStmt*)pNode)->pTableCfg);
|
||||||
taosMemoryFreeClear(pCfg);
|
taosMemoryFreeClear(((SShowCreateTableStmt*)pNode)->pDbCfg);
|
||||||
if (NULL == pCfg) {
|
if (NULL == pCfg) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue