You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-02 17:22:27 +03:00
MCOL-4483: Fix and consolidate log files and cpimport logging.
This commit is contained in:
@ -1577,9 +1577,9 @@ void TableInfo::writeBadRows( const std::vector<std::string>* errorDatRows,
|
||||
rejectFileNameToLog = fRejectDataFileName;
|
||||
}
|
||||
|
||||
oss << "Number of rows with errors = " << fRejectDataCnt <<
|
||||
". Exact error rows are listed in file " <<
|
||||
rejectFileNameToLog;
|
||||
oss << "Number of rows with bad data = " << fRejectDataCnt <<
|
||||
". Exact rows are listed in file located here: " <<
|
||||
fErrorDir;
|
||||
fLog->logMsg(oss.str(), MSGLVL_INFO1);
|
||||
|
||||
fRejectDataCnt = 0;
|
||||
@ -1691,9 +1691,9 @@ void TableInfo::writeErrReason( const std::vector< std::pair<RID,
|
||||
errFileNameToLog = fRejectErrFileName;
|
||||
}
|
||||
|
||||
oss << "Number of rows with errors = " << fRejectErrCnt <<
|
||||
". Row numbers with error reasons are listed in file " <<
|
||||
errFileNameToLog;
|
||||
oss << "Number of rows with errors = " << fRejectDataCnt <<
|
||||
". Exact rows are listed in file located here: " <<
|
||||
fErrorDir;
|
||||
fLog->logMsg(oss.str(), MSGLVL_INFO1);
|
||||
|
||||
fRejectErrCnt = 0;
|
||||
|
Reference in New Issue
Block a user