You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-05 16:15:50 +03:00
Fix post-mysql-install
It was executing based on a condition that will never be true
This commit is contained in:
@@ -53,28 +53,25 @@ for arg in "$@"; do
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ -x mysql-Columnstore ]; then
|
# Restart in the same way that mysqld will be started normally.
|
||||||
|
mysql-Columnstore stop >/dev/null 2>&1
|
||||||
|
sleep 2
|
||||||
|
mysql-Columnstore start --skip-grant-tables
|
||||||
|
|
||||||
# Restart in the same way that mysqld will be started normally.
|
sleep 5
|
||||||
mysql-Columnstore stop >/dev/null 2>&1
|
|
||||||
sleep 2
|
|
||||||
mysql-Columnstore start --skip-grant-tables
|
|
||||||
|
|
||||||
sleep 5
|
|
||||||
|
|
||||||
# Install various Calpont stuff...
|
|
||||||
install_mcs_mysql.sh --tmpdir=$tmpdir
|
|
||||||
checkForError
|
|
||||||
if [ $? -ne 0 ]; then
|
|
||||||
echo "ERROR: Invalid password in .my.cnf, or Columnstore plugin install missing"
|
|
||||||
mysql-Columnstore stop
|
|
||||||
sleep 2
|
|
||||||
exit 2;
|
|
||||||
fi
|
|
||||||
|
|
||||||
mysql-Columnstore stop
|
|
||||||
|
|
||||||
|
# Install various Calpont stuff...
|
||||||
|
install_mcs_mysql.sh --tmpdir=$tmpdir
|
||||||
|
checkForError
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
echo "ERROR: Invalid password in .my.cnf, or Columnstore plugin install missing"
|
||||||
|
mysql-Columnstore stop
|
||||||
|
sleep 2
|
||||||
|
exit 2;
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
mysql-Columnstore stop
|
||||||
|
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user