diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2005-01-20 15:37:27 +0100 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2005-01-20 15:37:27 +0100 |
commit | ea6e5d1b571bb396dbcb7de041dfd6f6bd59b33a (patch) | |
tree | 78450e2a8c1fefb9bdee5bb71fdec9abf5e0a0fa /mysql-test/r/ndb_autodiscover.result | |
parent | e52c48bb7d44b86d57c2b0f8feae732db69b813d (diff) | |
parent | 2e077d60611fecb115e445b4319ef185603b77df (diff) | |
download | mariadb-git-ea6e5d1b571bb396dbcb7de041dfd6f6bd59b33a.tar.gz |
Merge poseidon.ndb.mysql.com:/home/tomas/mysql-5.0
into poseidon.ndb.mysql.com:/home/tomas/mysql-5.0-ndb
mysql-test/r/ndb_autodiscover.result:
Auto merged
ndb/src/kernel/blocks/dbtc/DbtcMain.cpp:
Auto merged
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 35820512d39..b9e70b9c1cf 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 |