mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-02 02:34:19 +00:00
PT-2340 - Support MySQL 8.4
- Fixed typos - Added tests for MyRocks and TokuDB clustered indexes into t/pt-duplicate-key-checker/clustered_keys.t - Updated modules
This commit is contained in:
@@ -233,10 +233,15 @@ make_sandbox() {
|
||||
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" -a -n "$ENABLE_ROCKSDB" ]; then
|
||||
sudo rm -f /tmp/ps-admin.err
|
||||
$PERCONA_TOOLKIT_SANDBOX/bin/ps-admin --enable-rocksdb -u root -pmsandbox -h 127.1 -P $port
|
||||
fi
|
||||
if [ "$version" > "5.6" -a -n "$ENABLE_TOKUDB" ]; then
|
||||
sudo $PERCONA_TOOLKIT_SANDBOX/bin/ps-admin --enable-tokudb -u root -pmsandbox -h 127.1 -P $port
|
||||
if [ -n "$ENABLE_TOKUDB" ]; then
|
||||
$PERCONA_TOOLKIT_BRANCH/util/version_cmp $minor_version "8.0.28-19"
|
||||
if [[ "$?" < "2" ]] && [[ "$version" > "5.6" ]]; then
|
||||
sudo rm -f /tmp/ps-admin.err
|
||||
sudo $PERCONA_TOOLKIT_SANDBOX/bin/ps-admin --enable-tokudb -u root -pmsandbox -h 127.1 -P $port
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
|
Reference in New Issue
Block a user