diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2006-02-16 00:30:56 +0100 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2006-02-16 00:30:56 +0100 |
commit | 36017fce30bc707e7a32dc286e960463a2be1b77 (patch) | |
tree | 367a11aea5e6155b969ea73a79ce32ea91df0afe /mysql-test/t/ndb_multi.test | |
parent | aa796cab7dac5bb8a9ce311b558cdfb96f7b3ece (diff) | |
download | mariadb-git-36017fce30bc707e7a32dc286e960463a2be1b77.tar.gz |
Bug #17414 ndb schema distribution functionality does not work on mysql servers without binlog
Diffstat (limited to 'mysql-test/t/ndb_multi.test')
-rw-r--r-- | mysql-test/t/ndb_multi.test | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/mysql-test/t/ndb_multi.test b/mysql-test/t/ndb_multi.test index 0cc8f57e4b5..d2dc0561955 100644 --- a/mysql-test/t/ndb_multi.test +++ b/mysql-test/t/ndb_multi.test @@ -41,11 +41,12 @@ drop table t1; create table t1 (a int) engine=ndbcluster; insert into t1 value (2); connection server1; -# Currently a retry is required remotely ---error 1412 -select * from t1; -show warnings; -flush table t1; +## Currently a retry is required remotely +#--error 1412 +#select * from t1; +#show warnings; +#flush table t1; +# Table definition change should be propagated automatically select * from t1; # Connect to server2 and use the tables from there @@ -65,13 +66,9 @@ create table t4 (pk int primary key, b int) engine=ndb; connection server1; select * from t1; select * from t3; -show status like 'handler_discover%'; show tables like 't4'; -show status like 'handler_discover%'; show tables; drop table t1, t2, t3, t4; -connection server2; -drop table t1, t3, t4; # End of 4.1 tests |