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
chore(build): fixes to satisfy clang19 warnings
This commit is contained in:
committed by
Leonid Fedorov
parent
9fd7f342a7
commit
a0bee173f6
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user