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
@ -143,10 +143,11 @@ class WESDHandler
|
||||
void sendHeartbeats();
|
||||
std::string getTableName() const;
|
||||
std::string getSchemaName() const;
|
||||
char getEnclChar();
|
||||
char getEscChar();
|
||||
char getDelimChar();
|
||||
bool getConsoleLog();
|
||||
char getEnclChar() const;
|
||||
char getEscChar() const;
|
||||
char getDelimChar() const;
|
||||
size_t getSkipRows() const;
|
||||
bool getConsoleLog() const;
|
||||
int getReadBufSize();
|
||||
ImportDataMode getImportDataMode() const;
|
||||
void sysLog(const logging::Message::Args& msgArgs, logging::LOG_TYPE logType,
|
||||
|
Reference in New Issue
Block a user