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

Add a few missing qualifiers

This commit is contained in:
David Mott
2019-04-28 16:56:55 -05:00
parent 515b93cc3d
commit 56767ae793
6 changed files with 15 additions and 15 deletions

View File

@ -102,7 +102,7 @@ private:
int executeRedistributePlan();
int connectToWes(int);
void dumpPlanToFile(uint64_t, vector<PartitionInfo>&, int);
void dumpPlanToFile(uint64_t, std::vector<PartitionInfo>&, int);
void displayPlan();
uint32_t fAction;

View File

@ -43,15 +43,15 @@ public:
public:
//..Public methods
std::string getValue(const vector<string>& section) const;
std::string getAttribute(const std::vector<string>& sections,
std::string getValue(const std::vector<std::string>& section) const;
std::string getAttribute(const std::vector<std::string>& sections,
const std::string& Tag) const;
void getConfig(const std::string& section,
const std::string& name, std::vector<std::string>& values ) const;
void getAttributeListForAllChildren(
const vector<string>& sections,
const string& attributeTag,
vector<string>& attributeValues);
const std::vector<std::string>& sections,
const std::string& attributeTag,
std::vector<std::string>& attributeValues);
private:
//..Private methods