Commit 6cf610b4 authored by Rich Prohaska's avatar Rich Prohaska

link tokustat and tokufilecheck into the mysql scripts dir

parent 63158211
...@@ -85,14 +85,21 @@ echo '# checkout the tokudb handlerton' ...@@ -85,14 +85,21 @@ echo '# checkout the tokudb handlerton'
echo cd \$builddir echo cd \$builddir
github_clone $ftengine $ftengine_branch github_clone $ftengine $ftengine_branch
echo "pushd $mysql/storage" echo pushd $mysql/storage
echo 'if [ $? != 0 ] ; then exit 1; fi' echo 'if [ $? != 0 ] ; then exit 1; fi'
echo "ln -s ../../$ftengine/storage/tokudb tokudb" echo ln -s ../../$ftengine/storage/tokudb tokudb
echo 'if [ $? != 0 ] ; then exit 1; fi' echo 'if [ $? != 0 ] ; then exit 1; fi'
echo popd echo popd
echo "pushd $mysql" echo pushd $mysql
echo 'if [ $? != 0 ] ; then exit 1; fi' echo 'if [ $? != 0 ] ; then exit 1; fi'
echo "ln -s ../$backup/backup toku_backup" echo ln -s ../$backup/backup toku_backup
echo 'if [ $? != 0 ] ; then exit 1; fi'
echo popd
echo pushd $mysql/scripts
echo 'if [ $? != 0 ] ; then exit 1; fi'
echo ln ../../$ftengine/scripts/tokustat.py
echo 'if [ $? != 0 ] ; then exit 1; fi'
echo ln ../../$ftengine/scripts/tokufilecheck.py
echo 'if [ $? != 0 ] ; then exit 1; fi' echo 'if [ $? != 0 ] ; then exit 1; fi'
echo popd echo popd
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment