fix: show normal tables core
This commit is contained in:
parent
f208eefdf2
commit
bd2669b4f1
|
@ -1553,6 +1553,9 @@ SNode* createShowStmt(SAstCreateContext* pCxt, ENodeType type) {
|
||||||
}
|
}
|
||||||
|
|
||||||
SNode* setShowKind(SAstCreateContext* pCxt, SNode* pStmt, EShowKind showKind) {
|
SNode* setShowKind(SAstCreateContext* pCxt, SNode* pStmt, EShowKind showKind) {
|
||||||
|
if (pStmt == NULL) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
SShowStmt* pShow = (SShowStmt*)pStmt;
|
SShowStmt* pShow = (SShowStmt*)pStmt;
|
||||||
pShow->showKind = showKind;
|
pShow->showKind = showKind;
|
||||||
return pStmt;
|
return pStmt;
|
||||||
|
|
Loading…
Reference in New Issue