PT-204 Added RocksDB to the list of ignored engines

This commit is contained in:
Carlos Salguero
2017-11-16 16:11:52 -03:00
parent 98d8844363
commit b4ac841421
4 changed files with 99 additions and 0 deletions

View File

@@ -174,6 +174,13 @@ make_sandbox() {
/tmp/$port/use -e "start slave"
fi
if [ -x "$PERCONA_TOOLKIT_SANDBOX/bin/ps-admin" ]; then
# try to enable RocksDB. Only available on Percona Server 5.7.19+
if [ "$version" ">" "5.6" ]; then
$PERCONA_TOOLKIT_SANDBOX/bin/ps-admin --enable-rocksdb -u root -pmsandbox -h 127.1 -P $port
fi
fi
return 0
}