fix partial failure

This commit is contained in:
yihaoDeng 2024-11-27 07:59:16 +08:00
parent 2aac26e0a9
commit 90d63ea5a2
1 changed files with 0 additions and 6 deletions

View File

@ -2427,12 +2427,6 @@ static SNode* createAlterTableStmtFinalize(SNode* pRealTable, SAlterTableStmt* p
nodesDestroyNode(pRealTable);
return (SNode*)pStmt;
}
static SNode* createAlterTableMultiStmtFinalize(SNode* pRealTable, SAlterTableMultiStmt* pStmt) {
strcpy(pStmt->dbName, ((SRealTableNode*)pRealTable)->table.dbName);
strcpy(pStmt->tableName, ((SRealTableNode*)pRealTable)->table.tableName);
nodesDestroyNode(pRealTable);
return (SNode*)pStmt;
}
SNode* createAlterTableModifyOptions(SAstCreateContext* pCxt, SNode* pRealTable, SNode* pOptions) {
CHECK_PARSER_STATUS(pCxt);