1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

MCOL-3887 - postconfig problem processing an upgrade

mycnfUpgrade has been looking for our mysql config mods
in the /etc/my.cnf/ directory, which is wrong obviously.  Looks like
an oversight; all of the code around it is looking in the right place.
Changed it to look in the right place.
This commit is contained in:
Patrick LeBlanc
2020-03-16 13:42:44 -04:00
parent 608e941229
commit 4e7e70b0f1

View File

@ -136,7 +136,7 @@ int main(int argc, char* argv[])
}
//my.cnf.rpmsave file
string mycnfsaveFile = "/etc/my.cnf/columnstore.cnf.rpmsave";
string mycnfsaveFile = std::string(MCSMYCNFDIR) + "/columnstore.cnf.rpmsave";
ifstream mycnfsavefile (mycnfsaveFile.c_str());
if (!mycnfsavefile)