diff options
Diffstat (limited to 'mysql-test/t/ndb_autodiscover.test')
-rw-r--r-- | mysql-test/t/ndb_autodiscover.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/ndb_autodiscover.test b/mysql-test/t/ndb_autodiscover.test index f828b009af0..95b616fc7b2 100644 --- a/mysql-test/t/ndb_autodiscover.test +++ b/mysql-test/t/ndb_autodiscover.test @@ -434,14 +434,14 @@ drop table t6; show tables; -create table t1 (a int) engine=ndb; +create table t1 (a int,b longblob) engine=ndb; show tables; create database test2; use test2; show tables; --error 1146 select * from t1; -create table t2 (b int) engine=ndb; +create table t2 (b int,c longblob) engine=ndb; use test; select * from t1; show tables; |