1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00
This commit is contained in:
David Hill
2018-09-21 14:44:12 -05:00
parent 81e35e35eb
commit 72f514ca54
10 changed files with 138 additions and 74 deletions

View File

@ -66,6 +66,8 @@ using namespace logging;
#include "rowgroup.h"
using namespace rowgroup;
#include "installdir.h"
#include <boost/thread/thread.hpp>
#include <boost/thread/mutex.hpp>
#include <boost/version.hpp>
@ -92,7 +94,8 @@ throw runtime_error("CALPONT_INTERNAL_ERROR"); \
#if CSC_DEBUG
namespace
{
std::ofstream csclog("/tmp/csc.log", std::ios::app);
string tmpDir = startup::StartUp::installDir() + "csc.log";
std::ofstream csclog(tmpDir, std::ios::app);
}
#define DEBUG csclog
#else