Skip to content
Permalink
Browse files
Correct a wait condition in a disabled test
The test will still time out. That should be addressed in MDEV-8139.
  • Loading branch information
dr-m committed Mar 22, 2018
1 parent 8d32959 commit b98d80e
Showing 1 changed file with 1 addition and 1 deletion.
@@ -96,7 +96,7 @@ SET GLOBAL innodb_encryption_threads=5;
let $cnt=600;
while ($cnt)
{
let $success=`SELECT COUNT(*) = 0 FROM INFORMATION_SCHEMA.INNODB_TABLESPACES_SCRUBBING WHERE LAST_SCRUB_COMPLETED IS NULL AND ( NAME in ('test/t1', 'test/t2', 'test/t3') OR SPACE = 0 )`;
let $success=`SELECT COUNT(*) = 0 FROM INFORMATION_SCHEMA.INNODB_TABLESPACES_SCRUBBING WHERE LAST_SCRUB_COMPLETED IS NULL AND (NAME LIKE 'test/%' OR SPACE = 0)`;
if ($success)
{
let $cnt=0;

0 comments on commit b98d80e

Please sign in to comment.