diff options
author | unknown <magnus@neptunus.(none)> | 2004-04-15 12:03:13 +0200 |
---|---|---|
committer | unknown <magnus@neptunus.(none)> | 2004-04-15 12:03:13 +0200 |
commit | 689d0a0ad571ac8185c0df799ac65b8b34f3ea48 (patch) | |
tree | 78fd0a67df020857c680cdaa6cfc4c98510250db /mysql-test/install_test_db.sh | |
parent | 90cf174529bbdf102890aed3e5f91c09d97b1c72 (diff) | |
download | mariadb-git-689d0a0ad571ac8185c0df799ac65b8b34f3ea48.tar.gz |
Updated mysql-test-run to work with the started NDB Cluster
Added one test case for ndb to mysql-test-run, ndb_basic. It will show that
NDB Cluster is supported.
mysql-test/install_test_db.sh:
Added --skip-ndb wile installing test db
mysql-test/mysql-test-run.sh:
To enable NDB use --ndbcluster and to disable it --skip-ndbcluster or --skip-ndb
mysql-test/r/ndb_basic.result:
Updated testcase to use all uppercase
mysql-test/t/ndb_basic.test:
Updated testcase to use all uppercase
Diffstat (limited to 'mysql-test/install_test_db.sh')
-rw-r--r-- | mysql-test/install_test_db.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/install_test_db.sh b/mysql-test/install_test_db.sh index ac5435f9832..a4aa7fccf4a 100644 --- a/mysql-test/install_test_db.sh +++ b/mysql-test/install_test_db.sh @@ -77,7 +77,8 @@ EXTRA_ARG="--language=../sql/share/english/ --character-sets-dir=../sql/share/ch fi mysqld_boot=" $execdir/mysqld --no-defaults --bootstrap --skip-grant-tables \ - --basedir=$basedir --datadir=$ldata --skip-innodb --skip-bdb $EXTRA_ARG" + --basedir=$basedir --datadir=$ldata --skip-innodb --skip-ndb --skip-bdb \ + $EXTRA_ARG" echo "running $mysqld_boot" if $scriptdir/mysql_create_system_tables test $mdata $hostname | $mysqld_boot |