diff options
author | unknown <monty@donna.mysql.com> | 2001-01-22 15:33:34 +0200 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2001-01-22 15:33:34 +0200 |
commit | 3e54e5393293426a9bfb7e6036f7e12bdb71d3b5 (patch) | |
tree | ccd9b5c441de00d24eee19f6c4a55a4b4b7bfc6d /mysql-test/install_test_db.sh | |
parent | 6632102983d7f413d77f3f735ec8b22f5ffdcdaf (diff) | |
download | mariadb-git-3e54e5393293426a9bfb7e6036f7e12bdb71d3b5.tar.gz |
Fixes for OSF1
Made test more reliable on slow machines
Docs/manual.texi:
Changelog
client/mysqladmin.c:
Made --silent more silent
include/my_pthread.h:
Removed warning on OSF1
mysql-test/install_test_db.sh:
Allow connections from 127.0.0.1
mysql-test/mysql-test-run.sh:
Use mysqladmin ping to test if server is up
mysql-test/r/rpl000015.result:
Added sleep to make results repeatable
mysql-test/t/rpl000015.test:
Added sleep to make results repeatable
mysql-test/t/rpl000016.test:
Added sleep to make results repeatable
sql/sql_repl.cc:
added DBUG entry
sql/sql_table.cc:
Removed comparison of virtual functions as this didn't work on
Compaq C++ on OSF1
Diffstat (limited to 'mysql-test/install_test_db.sh')
-rw-r--r-- | mysql-test/install_test_db.sh | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/mysql-test/install_test_db.sh b/mysql-test/install_test_db.sh index 3ee2aa42fad..e59b87cbe1c 100644 --- a/mysql-test/install_test_db.sh +++ b/mysql-test/install_test_db.sh @@ -43,8 +43,6 @@ PATH=$PATH:/usr/bsd hostname=`hostname` # Install this too in the user table hostname="$hostname%" # Fix if not fully qualified hostname -resolved=127.0.0.1 - #create the directories [ -d $vardir ] || mkdir $vardir @@ -144,9 +142,7 @@ then i_u="INSERT INTO user VALUES ('localhost','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'); INSERT INTO user VALUES ('$hostname','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'); - - REPLACE INTO user VALUES ('localhost','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'); - REPLACE INTO user VALUES ('$hostname','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'); + REPLACE INTO user VALUES ('127.0.0.1','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'); INSERT INTO user VALUES ('localhost','','','N','N','N','N','N','N','N','N','N','N','N','N','N','N'); INSERT INTO user VALUES ('$hostname','','','N','N','N','N','N','N','N','N','N','N','N','N','N','N');" |