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
MCOL-520
This commit is contained in:
@ -54,6 +54,9 @@ using namespace messageqcpp;
|
||||
|
||||
using namespace BRM;
|
||||
|
||||
#include "installdir.h"
|
||||
|
||||
|
||||
namespace execplan
|
||||
{
|
||||
|
||||
@ -102,8 +105,12 @@ SessionMonitor::SessionMonitor()
|
||||
if (stmp != "")
|
||||
fSegmentFilename = strdup(stmp.c_str());
|
||||
else
|
||||
fSegmentFilename = strdup("/tmp/CalpontSessionMonitorShm");
|
||||
|
||||
{
|
||||
string tmpdir = startup::StartUp::installDir() + "CalpontSessionMonitorShm";
|
||||
|
||||
fSegmentFilename = strdup(tmpdir);
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
madeSems = getSems();
|
||||
|
Reference in New Issue
Block a user