You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
chore(build): fixes to satisfy clang19 warnings
This commit is contained in:
committed by
Leonid Fedorov
parent
9fd7f342a7
commit
a0bee173f6
@ -125,10 +125,8 @@ void printUsage()
|
||||
cout << " Positional parameters:" << endl
|
||||
<< " dbName Name of database to load" << endl
|
||||
<< " tblName Name of table to load" << endl
|
||||
<< " loadFile Optional input file name in current directory, "
|
||||
<< "unless a fully" << endl
|
||||
<< " qualified name is given. If not given, "
|
||||
<< "input read from stdin." << endl
|
||||
<< " loadFile Optional input file name in current directory, " << "unless a fully" << endl
|
||||
<< " qualified name is given. If not given, " << "input read from stdin." << endl
|
||||
<< endl;
|
||||
|
||||
cout << " Options:" << endl
|
||||
@ -158,8 +156,7 @@ void printUsage()
|
||||
<< " -w Number of parsers" << endl
|
||||
<< " -B I/O library read buffer size (in bytes)" << endl
|
||||
<< " -E Enclosed by character if field values are enclosed" << endl
|
||||
<< " -C Escape character used in conjunction with 'enclosed by' "
|
||||
<< "character," << endl
|
||||
<< " -C Escape character used in conjunction with 'enclosed by' " << "character," << endl
|
||||
<< " or as part of NULL escape sequence ('\\N'); default is '\\'" << endl
|
||||
<< " -I Binary import; binaryOpt 1-import NULL values" << endl
|
||||
<< " 2-saturate NULL values" << endl
|
||||
@ -191,7 +188,7 @@ void printUsage()
|
||||
//------------------------------------------------------------------------------
|
||||
// Signal handler to catch SIGTERM signal to terminate the process
|
||||
//------------------------------------------------------------------------------
|
||||
void handleSigTerm(int i)
|
||||
void handleSigTerm(int /*i*/)
|
||||
{
|
||||
BRMWrapper::getInstance()->finishCpimportJob(cpimportJobId);
|
||||
std::cout << "Received SIGTERM to terminate the process..." << std::endl;
|
||||
@ -201,7 +198,7 @@ void handleSigTerm(int i)
|
||||
//------------------------------------------------------------------------------
|
||||
// Signal handler to catch Control-C signal to terminate the process
|
||||
//------------------------------------------------------------------------------
|
||||
void handleControlC(int i)
|
||||
void handleControlC(int /*i*/)
|
||||
{
|
||||
BRMWrapper::getInstance()->finishCpimportJob(cpimportJobId);
|
||||
if (!BulkLoad::disableConsoleOutput())
|
||||
@ -213,7 +210,7 @@ void handleControlC(int i)
|
||||
//------------------------------------------------------------------------------
|
||||
// Signal handler to catch SIGTERM signal to terminate the process
|
||||
//------------------------------------------------------------------------------
|
||||
void handleSigSegv(int i)
|
||||
void handleSigSegv(int /*i*/)
|
||||
{
|
||||
BRMWrapper::getInstance()->finishCpimportJob(cpimportJobId);
|
||||
std::cout << "Received SIGSEGV to terminate the process..." << std::endl;
|
||||
@ -223,7 +220,7 @@ void handleSigSegv(int i)
|
||||
//------------------------------------------------------------------------------
|
||||
// Signal handler to catch SIGTERM signal to terminate the process
|
||||
//------------------------------------------------------------------------------
|
||||
void handleSigAbrt(int i)
|
||||
void handleSigAbrt(int /*i*/)
|
||||
{
|
||||
BRMWrapper::getInstance()->finishCpimportJob(cpimportJobId);
|
||||
std::cout << "Received SIGABRT to terminate the process..." << std::endl;
|
||||
@ -308,7 +305,6 @@ void setupSignalHandlers()
|
||||
memset(&act, 0, sizeof(act));
|
||||
act.sa_handler = handleSigAbrt;
|
||||
sigaction(SIGABRT, &act, 0);
|
||||
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
@ -523,8 +519,7 @@ void parseCmdLineArgs(int argc, char** argv, BulkLoad& curJob, std::string& sJob
|
||||
delim = '\t';
|
||||
|
||||
if (!BulkLoad::disableConsoleOutput())
|
||||
cout << "Column delimiter : "
|
||||
<< "\\t" << endl;
|
||||
cout << "Column delimiter : " << "\\t" << endl;
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -903,15 +898,15 @@ void getTableOID(const std::string& xmlGenSchema, const std::string& xmlGenTable
|
||||
catch (std::exception& ex)
|
||||
{
|
||||
std::ostringstream oss;
|
||||
oss << "Unable to set default JobID; "
|
||||
<< "Error getting OID for table " << tbl.schema << '.' << tbl.table << ": " << ex.what();
|
||||
oss << "Unable to set default JobID; " << "Error getting OID for table " << tbl.schema << '.' << tbl.table
|
||||
<< ": " << ex.what();
|
||||
startupError(oss.str(), false);
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
std::ostringstream oss;
|
||||
oss << "Unable to set default JobID; "
|
||||
<< "Unknown error getting OID for table " << tbl.schema << '.' << tbl.table;
|
||||
oss << "Unable to set default JobID; " << "Unknown error getting OID for table " << tbl.schema << '.'
|
||||
<< tbl.table;
|
||||
startupError(oss.str(), false);
|
||||
}
|
||||
|
||||
|
@ -902,7 +902,7 @@ int BulkLoad::preProcessAutoInc(const std::string& fullTableName, ColumnInfo* co
|
||||
// NO_ERROR if success
|
||||
// other if fail
|
||||
//------------------------------------------------------------------------------
|
||||
int BulkLoad::preProcessHwmLbid(const ColumnInfo* info, int minWidth, uint32_t partition, uint16_t segment,
|
||||
int BulkLoad::preProcessHwmLbid(const ColumnInfo* info, int /*minWidth*/, uint32_t partition, uint16_t segment,
|
||||
HWM& hwm, // input/output
|
||||
BRM::LBID_t& lbid, // output
|
||||
bool& bSkippedToNewExtent) // output
|
||||
|
@ -51,7 +51,7 @@ int ColumnBuffer::finishFile(bool /*bTruncFile*/)
|
||||
return NO_ERROR;
|
||||
}
|
||||
|
||||
int ColumnBuffer::resetToBeCompressedColBuf(long long& startFileOffset)
|
||||
int ColumnBuffer::resetToBeCompressedColBuf(long long& /*startFileOffset*/)
|
||||
{
|
||||
return NO_ERROR;
|
||||
}
|
||||
|
@ -139,27 +139,27 @@ class ColExtInfBase
|
||||
ColExtInfBase() = default;
|
||||
virtual ~ColExtInfBase() = default;
|
||||
|
||||
virtual void addFirstEntry(RID lastInputRow, BRM::LBID_t lbid, bool bIsNewExtent)
|
||||
virtual void addFirstEntry(RID /*lastInputRow*/, BRM::LBID_t /*lbid*/, bool /*bIsNewExtent*/)
|
||||
{
|
||||
}
|
||||
|
||||
virtual void addOrUpdateEntry(RID lastInputRow, int64_t minVal, int64_t maxVal, ColDataType colDataType,
|
||||
int width)
|
||||
virtual void addOrUpdateEntry(RID /*lastInputRow*/, int64_t /*minVal*/, int64_t /*maxVal*/, ColDataType /*colDataType*/,
|
||||
int /*width*/)
|
||||
{
|
||||
}
|
||||
|
||||
virtual void addOrUpdateEntry(RID lastInputRow, int128_t minVal, int128_t maxVal, ColDataType colDataType,
|
||||
int width)
|
||||
virtual void addOrUpdateEntry(RID /*lastInputRow*/, int128_t /*minVal*/, int128_t /*maxVal*/, ColDataType /*colDataType*/,
|
||||
int /*width*/)
|
||||
{
|
||||
}
|
||||
|
||||
virtual void getCPInfoForBRM(JobColumn column, BRMReporter& brmReporter)
|
||||
virtual void getCPInfoForBRM(JobColumn /*column*/, BRMReporter& /*brmReporter*/)
|
||||
{
|
||||
}
|
||||
virtual void print(const JobColumn& column)
|
||||
virtual void print(const JobColumn& /*column*/)
|
||||
{
|
||||
}
|
||||
virtual int updateEntryLbid(BRM::LBID_t startLbid)
|
||||
virtual int updateEntryLbid(BRM::LBID_t /*startLbid*/)
|
||||
{
|
||||
return NO_ERROR;
|
||||
}
|
||||
|
@ -63,7 +63,7 @@ ColumnOpBulk::~ColumnOpBulk()
|
||||
// @bug 5572 - HDFS usage: add *.tmp file backup flag
|
||||
IDBDataFile* ColumnOpBulk::openFile(const WriteEngine::Column& column, uint16_t dbRoot, uint32_t partition,
|
||||
uint16_t segment, std::string& segFile, bool useTmpSuffix,
|
||||
const char* mode, int ioBuffSize, bool isReadOnly) const
|
||||
const char* mode, int /*ioBuffSize*/, bool /*isReadOnly*/) const
|
||||
{
|
||||
return FileOp::openFile(column.dataFile.fid, dbRoot, partition, segment, segFile, mode, column.colWidth,
|
||||
useTmpSuffix);
|
||||
|
Reference in New Issue
Block a user