=== modified file 'mysql-test/suite/ndb/r/ndb_database.result' --- mysql-test/suite/ndb/r/ndb_database.result 2010-07-26 14:41:18 +0000 +++ mysql-test/suite/ndb/r/ndb_database.result 2010-09-17 12:21:34 +0000 @@ -59,4 +59,5 @@ create table newdb.t1(a int primary key) show tables; Tables_in_newdb t1 +drop table t1; drop database newdb; === modified file 'mysql-test/suite/ndb/t/ndb_database.test' --- mysql-test/suite/ndb/t/ndb_database.test 2010-07-26 14:41:18 +0000 +++ mysql-test/suite/ndb/t/ndb_database.test 2010-09-17 12:31:32 +0000 @@ -103,4 +103,7 @@ show tables; # Check that we can reuse the table name etc. create table newdb.t1(a int primary key) engine=ndb; show tables; -drop database newdb; \ No newline at end of file +# this fails...but if we add a "insert into t1 values (1);" it works +# insert into t1 values (1); +drop table t1; +drop database newdb;