Fixed test case after HANDLER CLOSE fix

mysql-test/mysql-test-run.sh:
  Safety fix
This commit is contained in:
unknown 2001-12-23 03:03:09 +02:00
parent b5f5980497
commit 27f652efef
3 changed files with 26 additions and 20 deletions

View File

@ -913,6 +913,8 @@ stop_slave ()
else
$ECHO "slave responded to SIGTERM "
fi
else
sleep $SLEEP_TIME_AFTER_RESTART
fi
eval "SLAVE$1_RUNNING=0"
fi
@ -935,6 +937,8 @@ stop_master ()
else
$ECHO "master responded to SIGTERM "
fi
else
sleep $SLEEP_TIME_AFTER_RESTART
fi
MASTER_RUNNING=0
fi

View File

@ -909,4 +909,5 @@ Table handler for 't1' doesn't have this option
handler t1 read t first;
Unknown table 't1' in HANDLER
handler t1 close;
Unknown table 't1' in HANDLER
drop table t1;

View File

@ -574,5 +574,6 @@ desc t1;
handler t1 open t1;
--error 1109
handler t1 read t first;
--error 1109
handler t1 close;
drop table t1;