You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-12-24 14:20:59 +03:00
chore(codestyle): mark virtual methods as override
This commit is contained in:
committed by
Leonid Fedorov
parent
ad80ab40aa
commit
0ab03c7258
@@ -48,13 +48,13 @@ class XMLGenData
|
||||
// Valid parms that can be stored and retrieved from XMLGenData
|
||||
EXPORT const static std::string DELIMITER;
|
||||
EXPORT const static std::string DESCRIPTION;
|
||||
EXPORT const static std::string ENCLOSED_BY_CHAR;
|
||||
EXPORT const static std::string ESCAPE_CHAR;
|
||||
EXPORT const static std::string JOBID;
|
||||
EXPORT const static std::string ENCLOSED_BY_CHAR;
|
||||
EXPORT const static std::string ESCAPE_CHAR;
|
||||
EXPORT const static std::string JOBID;
|
||||
EXPORT const static std::string MAXERROR;
|
||||
EXPORT const static std::string NAME;
|
||||
EXPORT const static std::string PATH;
|
||||
EXPORT const static std::string RPT_DEBUG;
|
||||
EXPORT const static std::string RPT_DEBUG;
|
||||
EXPORT const static std::string USER;
|
||||
EXPORT const static std::string NO_OF_READ_BUFFER;
|
||||
EXPORT const static std::string READ_BUFFER_CAPACITY;
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
#include <time.h>
|
||||
#include <ctime>
|
||||
#include <boost/filesystem/path.hpp>
|
||||
|
||||
#include "we_xmlop.h"
|
||||
@@ -54,7 +54,7 @@ class XMLJob : public XMLOp
|
||||
/**
|
||||
* @brief Default Destructor
|
||||
*/
|
||||
EXPORT ~XMLJob();
|
||||
EXPORT ~XMLJob() override;
|
||||
|
||||
/**
|
||||
* @brief Utility to generate a full path name for a Job XML file name
|
||||
@@ -115,7 +115,7 @@ class XMLJob : public XMLOp
|
||||
* @brief Process node
|
||||
* @param pParentNode Node to be parsed from XML
|
||||
*/
|
||||
EXPORT bool processNode(xmlNode* pParentNode);
|
||||
EXPORT bool processNode(xmlNode* pParentNode) override;
|
||||
|
||||
/**
|
||||
* @brief Set timezone
|
||||
|
||||
Reference in New Issue
Block a user