1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Fixes for mysqltest

Docs/manual.texi:
  More information about INSERT DELAYED
client/mysqltest.c:
  Added syntax -- error #
mysql-test/mysql-test-run.sh:
  Don't stop server that isn't started
mysql-test/t/bdb.test:
  Change to use -- error #
mysys/my_chsize.c:
  Fix for last commit
sql/field.cc:
  Fix for purify and opt_range.cc
sql/ha_berkeley.cc:
  Purecoverage hints
This commit is contained in:
unknown
2001-01-15 22:56:44 +02:00
parent 1f23f87f06
commit c753f496a6
7 changed files with 70 additions and 36 deletions

View File

@ -588,11 +588,17 @@ run_testcase ()
if [ x$FORCE != x1 ] ; then
$ECHO "Aborting. To continue, re-run with '--force'."
$ECHO
mysql_stop
if [ -z "$DO_GDB" ] && [ -z "$USE_RUNNING_SERVER" ] && [ -z "$DO_DDD" ]
then
mysql_stop
fi
exit 1
fi
mysql_restart
if [ -z "$DO_GDB" ] && [ -z "$USE_RUNNING_SERVER" ] && [ -z "$DO_DDD" ]
then
mysql_restart
fi
$ECHO "Resuming Tests"
$ECHO ""
else