You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-07 03:22:57 +03:00
compilation error
writeengine/server/we_dataloader.cpp:894:22: error: arithmetic between floating-point type 'double' and enumeration type 'WriteEngine::WEDataLoader::<unnamed enum>' is deprecated [-Werror=enum-conversion]
This commit is contained in:
@@ -208,11 +208,8 @@ class WEDataLoader : public Observer
|
||||
};
|
||||
|
||||
public:
|
||||
enum
|
||||
{
|
||||
MIN_QSIZE = 25,
|
||||
MAX_QSIZE = 250
|
||||
};
|
||||
static const int MIN_QSIZE = 25;
|
||||
static const int MAX_QSIZE = 250;
|
||||
|
||||
public:
|
||||
SimpleSysLog* fpSysLog;
|
||||
|
Reference in New Issue
Block a user