diff options
author | unknown <monty@mashka.mysql.fi> | 2003-02-10 17:03:27 +0200 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2003-02-10 17:03:27 +0200 |
commit | 03865c5fb1ad3de32dd4fc85acdce48e18df67a4 (patch) | |
tree | da26feecd7cbf846809f47cafec851ab3a897b7c /mysql-test/mysql-test-run.sh | |
parent | 7910884c5cbb59e89041506a12b9a3a567a97067 (diff) | |
download | mariadb-git-03865c5fb1ad3de32dd4fc85acdce48e18df67a4.tar.gz |
Better fix for count(distinct) bug
include/my_sys.h:
Remove compiler warning
mysql-test/mysql-test-run.sh:
Don't examine log files when you run with --extern
Diffstat (limited to 'mysql-test/mysql-test-run.sh')
-rw-r--r-- | mysql-test/mysql-test-run.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mysql-test/mysql-test-run.sh b/mysql-test/mysql-test-run.sh index 0f12dd9122a..3e498703ada 100644 --- a/mysql-test/mysql-test-run.sh +++ b/mysql-test/mysql-test-run.sh @@ -607,7 +607,9 @@ report_stats () { $ECHO "http://www.mysql.com/doc/M/y/MySQL_test_suite.html" fi - # + if test -z "$USE_RUNNING_SERVER" + then + # Report if there was any fatal warnings/errors in the log files # $RM -f $MY_LOG_DIR/warnings $MY_LOG_DIR/warnings.tmp @@ -630,6 +632,7 @@ report_stats () { echo "WARNING: Got errors/warnings while running tests. Please examine" echo "$MY_LOG_DIR/warnings for details." fi + fi } mysql_install_db () { |