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
Feature/mcol 4882 cpimport skip rows (#3594)
* feat(cpimport): MCOL-4882 add a parameter to skip header rows * chore(cpimport): MCOL-4882 Use boost::program_options to arguments parsing * feat(cpimport.bin): MCOL-4882 Add missing changes * add test * fix clang * add missing cmdline argument * fix bug * Fix double lines skipping * Fix incorrect --silent (-N) parsing * fix default --max-errors processing * fix overwriting default username * move initialization to members declaration
This commit is contained in:
committed by
GitHub
parent
1c8d5ec04e
commit
78c1b5034d
@ -60,10 +60,13 @@ class XMLGenData
|
||||
EXPORT const static std::string READ_BUFFER_CAPACITY;
|
||||
EXPORT const static std::string WRITE_BUFFER_SIZE;
|
||||
EXPORT const static std::string EXT;
|
||||
EXPORT const static std::string SKIP_ROWS;
|
||||
|
||||
/** @brief XMLGenData constructor
|
||||
*/
|
||||
EXPORT XMLGenData();
|
||||
XMLGenData(const XMLGenData&) = delete;
|
||||
XMLGenData& operator=(const XMLGenData&) = delete;
|
||||
|
||||
/** @brief XMLGenData destructor
|
||||
*/
|
||||
@ -92,10 +95,6 @@ class XMLGenData
|
||||
ParmList fParms;
|
||||
std::string fSchema;
|
||||
LoadNames fLoadNames;
|
||||
|
||||
private:
|
||||
XMLGenData(const XMLGenData&); // disable default copy ctor
|
||||
XMLGenData& operator=(const XMLGenData&); // disable default assignment
|
||||
};
|
||||
|
||||
} // namespace WriteEngine
|
||||
|
Reference in New Issue
Block a user