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
@ -1192,7 +1192,7 @@ std::shared_ptr<char[]> seekToEndOfHeader1(int fd, size_t* _bytesRead)
|
||||
throw runtime_error("seekToEndOfHeader1: did not find the end of the header");
|
||||
}
|
||||
|
||||
int IOCoordinator::mergeJournal(int objFD, int journalFD, uint8_t* buf, off_t offset, size_t* len) const
|
||||
int IOCoordinator::mergeJournal(int /*objFD*/, int /*journalFD*/, uint8_t* /*buf*/, off_t /*offset*/, size_t* /*len*/) const
|
||||
{
|
||||
throw runtime_error("IOCoordinator::mergeJournal(int, int, etc) is not implemented yet.");
|
||||
}
|
||||
|
@ -222,7 +222,7 @@ void Ownership::takeOwnership(const bf::path& p)
|
||||
auto it = ownedPrefixes.find(p);
|
||||
if (it != ownedPrefixes.end())
|
||||
return;
|
||||
ownedPrefixes[p] = NULL;
|
||||
ownedPrefixes[p] = false;
|
||||
s.unlock();
|
||||
|
||||
bool okToTransfer = false;
|
||||
|
@ -301,7 +301,7 @@ void Synchronizer::periodicSync()
|
||||
}
|
||||
}
|
||||
|
||||
void Synchronizer::syncNow(const bf::path& prefix)
|
||||
void Synchronizer::syncNow(const bf::path& /*prefix*/)
|
||||
{
|
||||
boost::unique_lock<boost::mutex> lock(mutex);
|
||||
|
||||
|
Reference in New Issue
Block a user