1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-12-17 01:02:23 +03:00

Merge pull request #1634 from mariadb-corporation/develop-bar-MCOL-4425

MCOL-4425 INSERT..SELECT hangs on cpimport when MCS is installed in a…
This commit is contained in:
Roman Nozdrin
2020-12-04 19:40:49 +03:00
committed by GitHub
2 changed files with 4 additions and 1 deletions

View File

@@ -390,6 +390,8 @@
#define MCSSBINDIR "${ENGINE_SBINDIR}"
#define MCSBINDIR "${ENGINE_BINDIR}"
#define MCSMYCNFDIR "${MARIADB_MYCNFDIR}"
#endif

View File

@@ -43,6 +43,7 @@ using namespace oam;
#include "we_cmdargs.h"
#include "installdir.h"
#include "mcsconfig.h"
namespace WriteEngine
{
@@ -598,7 +599,7 @@ void WECmdArgs::parseCmdLineArgs(int argc, char** argv)
if (argc > 0)
fPrgmName = "cpimport.bin"; //argv[0] is splitter but we need cpimport
fPrgmName = string(MCSBINDIR) + "/" + "cpimport.bin"; //argv[0] is splitter but we need cpimport
while ((aCh = getopt(argc, argv,
"d:j:w:s:v:l:r:b:e:B:f:q:ihm:E:C:P:I:n:p:c:ST:Ny:K:t:H:g:U:"))