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
chore(codestyle): mark virtual methods as override
This commit is contained in:
committed by
Leonid Fedorov
parent
ad80ab40aa
commit
0ab03c7258
@ -49,7 +49,7 @@ class CreateTableProcessor : public DDLPackageProcessor
|
||||
*
|
||||
* @param createTableStmt the CreateTableStatement
|
||||
*/
|
||||
DDLResult processPackageInternal(ddlpackage::SqlStatement* sqlTableStmt);
|
||||
DDLResult processPackageInternal(ddlpackage::SqlStatement* sqlTableStmt) override;
|
||||
};
|
||||
|
||||
} // namespace ddlpackageprocessor
|
||||
|
@ -22,7 +22,7 @@
|
||||
***********************************************************************/
|
||||
/** @file */
|
||||
|
||||
#ifndef DDLINDEXPOPULATOR_H
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <stdexcept>
|
||||
@ -302,5 +302,4 @@ class DDLIndexPopulator
|
||||
};
|
||||
};
|
||||
|
||||
} // namespace ddlpackageprocessor
|
||||
#endif // DDLPINDEXPOPULATOR_H
|
||||
} // namespace ddlpackageprocessor
|
@ -29,7 +29,7 @@
|
||||
#include <stdexcept>
|
||||
#include <sstream>
|
||||
#include <iostream>
|
||||
#include <stdint.h>
|
||||
#include <cstdint>
|
||||
|
||||
#include <boost/any.hpp>
|
||||
#include <boost/tuple/tuple.hpp>
|
||||
@ -49,7 +49,7 @@
|
||||
|
||||
#define EXPORT
|
||||
|
||||
//#define IDB_DDL_DEBUG
|
||||
// #define IDB_DDL_DEBUG
|
||||
namespace ddlpackageprocessor
|
||||
{
|
||||
#define SUMMARY_INFO(message) \
|
||||
@ -206,8 +206,8 @@ class DDLPackageProcessor
|
||||
struct NJLSysDataList
|
||||
{
|
||||
NJLSysDataVector sysDataVec;
|
||||
EXPORT NJLSysDataList(){};
|
||||
EXPORT ~NJLSysDataList();
|
||||
EXPORT NJLSysDataList() = default;
|
||||
EXPORT ~NJLSysDataList() = default;
|
||||
NJLSysDataVector::const_iterator begin()
|
||||
{
|
||||
return sysDataVec.begin();
|
||||
|
@ -38,7 +38,7 @@ class DropIndexProcessor : public DDLPackageProcessor
|
||||
*
|
||||
* @param dropIndexStmt the drop index statement
|
||||
*/
|
||||
DDLResult processPackageInternal(ddlpackage::SqlStatement& dropIndexStmt);
|
||||
DDLResult processPackageInternal(ddlpackage::SqlStatement* dropIndexStmt) override;
|
||||
|
||||
protected:
|
||||
private:
|
||||
|
@ -46,7 +46,7 @@ class DropPartitionProcessor : public DDLPackageProcessor, FormatStatementString
|
||||
*
|
||||
* @param dropTableStmt the drop table statement
|
||||
*/
|
||||
DDLResult processPackageInternal(ddlpackage::SqlStatement* dropPartitionStmt);
|
||||
DDLResult processPackageInternal(ddlpackage::SqlStatement* dropPartitionStmt) override;
|
||||
};
|
||||
} // namespace ddlpackageprocessor
|
||||
|
||||
|
@ -46,7 +46,7 @@ class DropTableProcessor : public DDLPackageProcessor
|
||||
*
|
||||
* @param dropTableStmt the drop table statement
|
||||
*/
|
||||
DDLResult processPackageInternal(ddlpackage::SqlStatement* dropTableStmt);
|
||||
DDLResult processPackageInternal(ddlpackage::SqlStatement* dropTableStmt) override;
|
||||
};
|
||||
|
||||
/** @brief specialization of a DDLPacakageProcessor
|
||||
@ -66,7 +66,7 @@ class TruncTableProcessor : public DDLPackageProcessor
|
||||
*
|
||||
* @param truncTableStmt the truncate table statement
|
||||
*/
|
||||
DDLResult processPackageInternal(ddlpackage::SqlStatement* truncTableStmt);
|
||||
DDLResult processPackageInternal(ddlpackage::SqlStatement* truncTableStmt) override;
|
||||
};
|
||||
|
||||
} // namespace ddlpackageprocessor
|
||||
|
@ -46,7 +46,7 @@ class MarkPartitionProcessor : public DDLPackageProcessor, FormatStatementString
|
||||
*
|
||||
* @param createTableStmt the CreateTableStatement
|
||||
*/
|
||||
DDLResult processPackageInternal(ddlpackage::SqlStatement* MarkPartitionStmt);
|
||||
DDLResult processPackageInternal(ddlpackage::SqlStatement* MarkPartitionStmt) override;
|
||||
};
|
||||
|
||||
} // namespace ddlpackageprocessor
|
||||
|
@ -46,7 +46,7 @@ class RestorePartitionProcessor : public DDLPackageProcessor, FormatStatementStr
|
||||
*
|
||||
* @param dropTableStmt the drop table statement
|
||||
*/
|
||||
DDLResult processPackageInternal(ddlpackage::SqlStatement* RestorePartitionStmt);
|
||||
DDLResult processPackageInternal(ddlpackage::SqlStatement* RestorePartitionStmt) override;
|
||||
};
|
||||
} // namespace ddlpackageprocessor
|
||||
|
||||
|
Reference in New Issue
Block a user