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-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:
@ -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)
|
||||
|
Reference in New Issue
Block a user