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
One more try to fix autobake build
This commit is contained in:
committed by
Leonid Fedorov
parent
902805d5a3
commit
05bbfcae57
@ -82,7 +82,6 @@ target_include_directories(storagemanager PRIVATE ${Boost_INCLUDE_DIRS})
|
||||
|
||||
columnstore_executable(StorageManager src/main.cpp)
|
||||
columnstore_link(StorageManager storagemanager)
|
||||
set_property(TARGET StorageManager PROPERTY CXX_STANDARD 20)
|
||||
|
||||
set(TMPDIR ${CMAKE_RUNTIME_OUTPUT_DIRECTORY})
|
||||
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
|
||||
|
@ -19,12 +19,12 @@
|
||||
|
||||
#include <deque>
|
||||
#include <string>
|
||||
#include <map>
|
||||
#include <memory>
|
||||
#include <optional>
|
||||
#include <unordered_map>
|
||||
|
||||
#include "CloudStorage.h"
|
||||
#include "libmarias3/marias3.h"
|
||||
#include "Config.h"
|
||||
#include <curl/curl.h>
|
||||
|
||||
namespace storagemanager
|
||||
|
@ -1,14 +1,7 @@
|
||||
#include <my_config.h>
|
||||
#include <cmath>
|
||||
#include <iostream>
|
||||
#include <sstream>
|
||||
#include <string.h>
|
||||
#include <unordered_map>
|
||||
#include <algorithm>
|
||||
#include <sstream>
|
||||
#include <iostream>
|
||||
#include <charconv>
|
||||
#include "boost/lexical_cast.hpp"
|
||||
#include "idb_mysql.h"
|
||||
|
||||
namespace
|
||||
|
@ -303,7 +303,7 @@ void WECmdArgs::parseCmdLineArgs(int argc, char** argv)
|
||||
fAllowMissingColumn = true;
|
||||
}
|
||||
}
|
||||
if (vm.contains("max-errors"))
|
||||
if (vm.count("max-errors"))
|
||||
{
|
||||
auto optarg= vm["max-errors"].as<string>();
|
||||
if (optarg == "all")
|
||||
|
@ -736,7 +736,7 @@ void WECmdArgs::parseCmdLineArgs(int argc, char** argv)
|
||||
fBatchQty = 10000;
|
||||
}
|
||||
}
|
||||
if (vm.contains("max-errors"))
|
||||
if (vm.count("max-errors"))
|
||||
{
|
||||
auto optarg = vm["max-errors"].as<string>();
|
||||
if (optarg == "all")
|
||||
|
Reference in New Issue
Block a user