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
libc++ crashes fixes
This commit is contained in:
@@ -254,12 +254,13 @@ bool WEDataLoader::setupCpimport() // fork the cpimport
|
||||
}
|
||||
|
||||
Cmds.push_back(0); // null terminate
|
||||
// updatePrgmPath(Cmds);
|
||||
// updatePrgmPath(Cmds);
|
||||
|
||||
// NOTE: for debugging
|
||||
// // NOTE: for debugging
|
||||
int aSize = Cmds.size();
|
||||
|
||||
for (int aIdx = 0; aIdx < aSize; ++aIdx)
|
||||
// Do not address last terminating 0
|
||||
for (int aIdx = 0; aIdx < aSize - 1; ++aIdx)
|
||||
{
|
||||
cout << "Args " << Cmds[aIdx] << endl;
|
||||
}
|
||||
|
Reference in New Issue
Block a user