1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

chore(build): more fixes for the new warnings

This commit is contained in:
Leonid Fedorov
2025-05-09 22:07:22 +00:00
committed by Leonid Fedorov
parent a0bee173f6
commit fc028983b9
6 changed files with 34 additions and 34 deletions

View File

@ -28,7 +28,7 @@
#include <values.h>
#endif
#include <boost/thread.hpp>
//#define NDEBUG
// #define NDEBUG
#include <cassert>
#include "dataconvert.h"
@ -74,6 +74,7 @@ namespace BRM
{
DBRM::DBRM(bool noBRMinit) : fDebug(false)
{
(void)fDebug;
if (!noBRMinit)
{
mst.reset(new MasterSegmentTable());

View File

@ -753,7 +753,7 @@ class DBRM
/* SessionManager interface */
EXPORT const QueryContext verID();
EXPORT const QueryContext sysCatVerID();
EXPORT uint8_t newCpimportJob(uint32_t &jobId);
EXPORT uint8_t newCpimportJob(uint32_t& jobId);
EXPORT void finishCpimportJob(uint32_t jobId);
EXPORT const TxnID newTxnID(const SessionManagerServer::SID session, bool block, bool isDDL = false);
EXPORT void committed(BRM::TxnID& txnid);
@ -1015,7 +1015,7 @@ class DBRM
std::string masterName;
boost::mutex mutex;
config::Config* config;
[[maybe_unused]]bool fDebug;
bool fDebug;
};
} // namespace BRM