You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
Fix namespace and class changes
This commit is contained in:
@ -148,7 +148,7 @@ private:
|
|||||||
void formatMiniStats();
|
void formatMiniStats();
|
||||||
void printCalTrace();
|
void printCalTrace();
|
||||||
|
|
||||||
static void AddSimplColumn(const vector<SimpleColumn*>& scs, JobInfo& jobInfo);
|
static void AddSimplColumn(const std::vector<execplan::SimpleColumn*>& scs, JobInfo& jobInfo);
|
||||||
|
|
||||||
class Runner
|
class Runner
|
||||||
{
|
{
|
||||||
|
@ -1594,11 +1594,7 @@ uint32_t doUpdateDelete(THD* thd)
|
|||||||
{
|
{
|
||||||
if (timeStampColumnNames.find(onUpdateTimeStampColumns[i]) == timeStampColumnNames.end())
|
if (timeStampColumnNames.find(onUpdateTimeStampColumns[i]) == timeStampColumnNames.end())
|
||||||
{
|
{
|
||||||
columnAssignmentPtr = new ColumnAssignment();
|
columnAssignmentPtr = new ColumnAssignment(string(onUpdateTimeStampColumns[i]), "=", "");
|
||||||
columnAssignmentPtr->fColumn = string(onUpdateTimeStampColumns[i]);
|
|
||||||
columnAssignmentPtr->fOperator = "=";
|
|
||||||
columnAssignmentPtr->fFuncScale = 0;
|
|
||||||
columnAssignmentPtr->fFromCol = false;
|
|
||||||
struct timeval tv;
|
struct timeval tv;
|
||||||
char buf[64];
|
char buf[64];
|
||||||
gettimeofday(&tv, 0);
|
gettimeofday(&tv, 0);
|
||||||
|
@ -86,7 +86,7 @@ using namespace joblist;
|
|||||||
|
|
||||||
namespace fs = boost::filesystem;
|
namespace fs = boost::filesystem;
|
||||||
|
|
||||||
ThreadPool DMLServer::fDmlPackagepool(10, 0);
|
threadpool::ThreadPool DMLServer::fDmlPackagepool(10, 0);
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
{
|
{
|
||||||
@ -658,7 +658,7 @@ int main(int argc, char* argv[])
|
|||||||
JobStep::jobstepThreadPool.setDebug(true);
|
JobStep::jobstepThreadPool.setDebug(true);
|
||||||
JobStep::jobstepThreadPool.invoke(threadpool::ThreadPoolMonitor(&JobStep::jobstepThreadPool));
|
JobStep::jobstepThreadPool.invoke(threadpool::ThreadPoolMonitor(&JobStep::jobstepThreadPool));
|
||||||
DMLServer::fDmlPackagepool.setDebug(true);
|
DMLServer::fDmlPackagepool.setDebug(true);
|
||||||
DMLServer::fDmlPackagepool.invoke(ThreadPoolMonitor(&DMLServer::fDmlPackagepool));
|
DMLServer::fDmlPackagepool.invoke(threadpool::ThreadPoolMonitor(&DMLServer::fDmlPackagepool));
|
||||||
}
|
}
|
||||||
|
|
||||||
//set ACTIVE state
|
//set ACTIVE state
|
||||||
|
Reference in New Issue
Block a user