diff --git a/mysql-test/suite/plugins/suite.pm b/mysql-test/suite/plugins/suite.pm index 610f94173f4..2b0f1b56e19 100644 --- a/mysql-test/suite/plugins/suite.pm +++ b/mysql-test/suite/plugins/suite.pm @@ -1,9 +1,11 @@ package My::Suite::Plugins; +use My::Platform; + @ISA = qw(My::Suite); sub cassandra_running() { - return 0 if IS_WINDOW; + return 0 if IS_WINDOWS; system 'echo show version | cqlsh -3 2>/dev/null >/dev/null'; return $? == 0; }