1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-05 15:41:14 +03:00

Merge branch 'develop' into S3-project

This commit is contained in:
Patrick LeBlanc
2019-08-14 15:37:14 -05:00
245 changed files with 3356 additions and 3224 deletions

View File

@ -1,5 +1,5 @@
/* Copyright (C) 2014 InfiniDB, Inc.
Copyright (C) 2016 MariaDB Corporaton
Copyright (C) 2016 MariaDB Corporation
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
@ -5185,11 +5185,11 @@ int ProcessMonitor::changeMyCnf(std::string type)
// set local query flag if on pm
if ( (PMwithUM == "y") && config.moduleType() == "pm" )
{
pos = buf.find("infinidb_local_query", 0);
pos = buf.find("columnstore_local_query", 0);
if ( pos != string::npos )
{
buf = "infinidb_local_query=1";
buf = "columnstore_local_query=1";
string command = "SET GLOBAL " + buf + ";";
@ -5205,11 +5205,11 @@ int ProcessMonitor::changeMyCnf(std::string type)
else
{
// disable, if needed
pos = buf.find("infinidb_local_query", 0);
pos = buf.find("columnstore_local_query", 0);
if ( pos != string::npos )
{
buf = "infinidb_local_query=0";
buf = "columnstore_local_query=0";
string command = "SET GLOBAL " + buf + ";";
int ret = runMariaDBCommandLine(command);