1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +03:00

more changes for names

This commit is contained in:
david hill
2016-05-12 14:14:24 -05:00
parent b78043dc8a
commit 0dbd823c00
185 changed files with 15440 additions and 16894 deletions

View File

@ -251,7 +251,7 @@
<ModuleHeartbeatPeriod>5</ModuleHeartbeatPeriod>
<ModuleHeartbeatCount>3</ModuleHeartbeatCount>
<ProcessHeartbeatPeriod>60</ProcessHeartbeatPeriod>
<DBRoot>/usr/local/Calpont/data</DBRoot>
<DBRoot>/usr/local/MariaDB/Columnstore/data</DBRoot>
<DBRMRoot>/home/pleblanc/DBRMRoot_test</DBRMRoot>
<RAIDCriticalThreshold>90</RAIDCriticalThreshold>
<RAIDMajorThreshold>80</RAIDMajorThreshold>
@ -355,7 +355,7 @@
</VersionBuffer>
<OIDManager>
<!-- XXXPAT: This is located in tmp so we all have R/W access.
It should be relocated to /usr/local/Calpont/share/oidbitmap
It should be relocated to /usr/local/MariaDB/Columnstore/share/oidbitmap
on the production machine-->
<OIDBitmapFile>/tmp/oidbitmap</OIDBitmapFile>
<FirstOID>3000</FirstOID>
@ -364,7 +364,7 @@
<OnDisconnect>Commit</OnDisconnect> <!-- or Rollback -->
</OracleConnector>
<WriteEngine>
<BulkRoot>/usr/local/Calpont/data/bulk</BulkRoot>
<BulkRoot>/usr/local/MariaDB/Columnstore/data/bulk</BulkRoot>
</WriteEngine>
<!-- The DBRM configuration entries should look like this.
<DBRM_Master>

View File

@ -37,7 +37,7 @@ using namespace std;
namespace BRM {
#ifdef BRM_INFO
std::ofstream brmlog("/var/log/Calpont/brm.log", std::ios::app);
std::ofstream brmlog("/var/log/Columnstore/brm.log", std::ios::app);
Tracer::Tracer(const std::string& file, int line, const std::string& msg, bool debug, bool writeNow): fFileName(file), fLine(line), fMsg(msg), fDebug(debug), fpid(getpid())
{

View File

@ -42,7 +42,7 @@ namespace BRM {
/** @brief Trace beginning and end of a call.
*
* When turned on, fDebug is true, Tracer writes informational messages to /var/log/Calpont/brm.log.
* When turned on, fDebug is true, Tracer writes informational messages to /var/log/Columnstore/brm.log.
* It keeps track of integral, string and boolean inputs, and integral and boolean outputs.
* If it should print a message immediately from the constructor, call it with the final parameter,
* writeNow, true (default). If input and output parameters need to be added, call it with