You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
MCOL-5352 Properly handle PP restart for DML/DDL operations.
This commit is contained in:
committed by
Leonid Fedorov
parent
d3896efb0f
commit
7f14dae5c7
@ -39,11 +39,6 @@ class AlterTableProcessor : public DDLPackageProcessor
|
||||
AlterTableProcessor(BRM::DBRM* aDbrm) : DDLPackageProcessor(aDbrm)
|
||||
{
|
||||
}
|
||||
/** @brief process an alter table statement
|
||||
*
|
||||
* @param alterTableStmt the AlterTableStatement
|
||||
*/
|
||||
EXPORT DDLResult processPackage(ddlpackage::AlterTableStatement& alterTableStmt);
|
||||
/** @brief add a physical column file
|
||||
*
|
||||
* @param result the result of the operation
|
||||
@ -151,6 +146,11 @@ class AlterTableProcessor : public DDLPackageProcessor
|
||||
uint64_t uniqueId);
|
||||
|
||||
private:
|
||||
/** @brief process an alter table statement
|
||||
*
|
||||
* @param alterTableStmt the AlterTableStatement
|
||||
*/
|
||||
DDLResult processPackageInternal(ddlpackage::SqlStatement* alterTableStmt) override;
|
||||
};
|
||||
|
||||
} // namespace ddlpackageprocessor
|
||||
|
Reference in New Issue
Block a user