You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-08 14:22:09 +03:00
Merge branch 'stable-23.10' into MCOL-4240
This commit is contained in:
@@ -18,9 +18,4 @@ set(WriteEngineServer_SRCS
|
||||
)
|
||||
|
||||
columnstore_executable(WriteEngineServer ${WriteEngineServer_SRCS})
|
||||
|
||||
add_dependencies(WriteEngineServer loggingcpp)
|
||||
|
||||
columnstore_link(
|
||||
WriteEngineServer ${ENGINE_LDFLAGS} ${NETSNMP_LIBRARIES} ${ENGINE_WRITE_LIBS} threadpool writeengineredistribute
|
||||
)
|
||||
columnstore_link(WriteEngineServer ${ENGINE_LDFLAGS} ${ENGINE_WRITE_LIBS} threadpool writeengineredistribute loggingcpp)
|
||||
|
@@ -239,12 +239,13 @@ bool WEDataLoader::setupCpimport() // fork the cpimport
|
||||
std::string aCmdLine = fCmdLineStr;
|
||||
std::istringstream ss(aCmdLine);
|
||||
std::string arg;
|
||||
std::vector<std::string> v2(20, "");
|
||||
std::vector<std::string> v2;
|
||||
unsigned int i = 0;
|
||||
|
||||
while (ss >> arg)
|
||||
{
|
||||
v2[i++] = arg;
|
||||
v2.push_back(arg);
|
||||
i++;
|
||||
}
|
||||
|
||||
for (unsigned int j = 0; j < i; ++j)
|
||||
|
Reference in New Issue
Block a user