mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Correct a wait condition in a disabled test
The test will still time out. That should be addressed in MDEV-8139.
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user