We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 440addf commit 3599b49Copy full SHA for 3599b49
storage/rocksdb/mysql-test/rocksdb/suite.pm
@@ -1,12 +1,18 @@
1
package My::Suite::Rocksdb;
2
3
@ISA = qw(My::Suite);
4
+use My::Find;
5
+use File::Basename;
6
+use strict;
7
8
sub is_default { not $::opt_embedded_server }
9
-my ($sst_dump) = grep { -x "$_/sst_dump" } "$::bindir/storage/rocksdb", $::path_client_bindir;
10
+my $sst_dump=
11
+::mtr_exe_maybe_exists(
12
+ "$::bindir/storage/rocksdb$::opt_vs_config/sst_dump",
13
+ "$::path_client_bindir/sst_dump");
14
return "RocksDB is not compiled, no sst_dump" unless $sst_dump;
-$ENV{MARIAROCKS_SST_DUMP}="$sst_dump/sst_dump";
15
+$ENV{MARIAROCKS_SST_DUMP}="$sst_dump";
16
17
bless { };
18
0 commit comments