diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2005-01-20 13:45:42 +0100 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2005-01-20 13:45:42 +0100 |
commit | 12d1ee5473faecc14137a00b73f8606244cf43d9 (patch) | |
tree | c518f3c3554eaf727ca41dc821925d2a09e57531 /mysql-test/r/ndb_autodiscover.result | |
parent | 0c20ad6c1529a9efe9dcc84cc84039bb36471216 (diff) | |
download | mariadb-git-12d1ee5473faecc14137a00b73f8606244cf43d9.tar.gz |
added variable NDB_MGM to be able to run the management client in tests
added testcase for Bug#8035
added option to wait for not-started
Bug#8035
mysql-test/mysql-test-run.sh:
added variable NDB_MGM to be able to run the management client in tests
mysql-test/r/ndb_autodiscover.result:
added testcase for Bug#8035
mysql-test/t/ndb_autodiscover.test:
added testcase for Bug#8035
ndb/tools/waiter.cpp:
added option to wait for not-started
sql/lock.cc:
Bug#8035
Diffstat (limited to 'mysql-test/r/ndb_autodiscover.result')
-rw-r--r-- | mysql-test/r/ndb_autodiscover.result | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/r/ndb_autodiscover.result b/mysql-test/r/ndb_autodiscover.result index ba7bcd05673..2b8fbb6fda0 100644 --- a/mysql-test/r/ndb_autodiscover.result +++ b/mysql-test/r/ndb_autodiscover.result @@ -359,6 +359,16 @@ information_schema mysql test use test; +drop database if exists test_only_ndb_tables; +create database test_only_ndb_tables; +use test_only_ndb_tables; +create table t1 (a int primary key) engine=ndb; +select * from t1; +a +select * from t1; +ERROR HY000: Can't lock file (errno: 4009) +use test; +drop database test_only_ndb_tables; CREATE TABLE t9 ( a int NOT NULL PRIMARY KEY, b int |