1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-07 03:22:57 +03:00

add check for table with > 500 rows

This commit is contained in:
mariadb-KristinaPavlova
2025-07-16 17:23:14 +03:00
parent 7dca1da8f2
commit a47dff1454
2 changed files with 54 additions and 2 deletions

View File

@@ -151,6 +151,12 @@ class AlterTableProcessor : public DDLPackageProcessor
* @param alterTableStmt the AlterTableStatement
*/
DDLResult processPackageInternal(ddlpackage::SqlStatement* alterTableStmt) override;
/** @brief check if the table have more than 500 rows
*
* @param fTableName the QualifiedName for the table
*/
bool tableTooBig(ddlpackage::QualifiedName& fTableNam);
};
} // namespace ddlpackageprocessor