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): more fixes for the new warnings
This commit is contained in:
committed by
Leonid Fedorov
parent
a0bee173f6
commit
fc028983b9
@ -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());
|
||||
|
@ -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
|
||||
|
Reference in New Issue
Block a user