diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2006-03-01 13:31:21 +0100 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2006-03-01 13:31:21 +0100 |
commit | e39f2291979a62f59821c0f2763a612525ade2a5 (patch) | |
tree | 71bfaf53528b1342c5523ee010594dc644711eb0 /mysql-test/t/ndb_binlog_multi.test | |
parent | cc5056c514fdd9e6710cdc98d371ba193ed1cab2 (diff) | |
download | mariadb-git-e39f2291979a62f59821c0f2763a612525ade2a5.tar.gz |
Bug #17805 Cluster_replication database should be renamed to just cluster
Diffstat (limited to 'mysql-test/t/ndb_binlog_multi.test')
-rw-r--r-- | mysql-test/t/ndb_binlog_multi.test | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mysql-test/t/ndb_binlog_multi.test b/mysql-test/t/ndb_binlog_multi.test index 71edd70c14f..4bdc89fa3bd 100644 --- a/mysql-test/t/ndb_binlog_multi.test +++ b/mysql-test/t/ndb_binlog_multi.test @@ -14,7 +14,7 @@ drop table if exists t1,t2; # and sets up the replication correctly # -# no tables and nothing in cluster_replication.binlog_index; +# no tables and nothing in cluster.binlog_index; connection server1; SHOW TABLES; @@ -33,7 +33,7 @@ select * from t2 order by a; save_master_pos; --replace_column 1 <the_epoch> SELECT @the_epoch:=epoch,inserts,updates,deletes,schemaops FROM - cluster_replication.binlog_index ORDER BY epoch DESC LIMIT 1; + cluster.binlog_index ORDER BY epoch DESC LIMIT 1; let $the_epoch= `SELECT @the_epoch`; # see if we got something on server1 @@ -41,7 +41,7 @@ connection server1; SELECT * FROM t2 ORDER BY a; --replace_result $the_epoch <the_epoch> eval SELECT inserts,updates,deletes,schemaops FROM - cluster_replication.binlog_index WHERE epoch=$the_epoch; + cluster.binlog_index WHERE epoch=$the_epoch; # drop the table on server1 DROP TABLE t2; @@ -50,12 +50,12 @@ INSERT INTO t1 VALUES (1),(2); save_master_pos; --replace_column 1 <the_epoch2> SELECT @the_epoch2:=epoch,inserts,updates,deletes,schemaops FROM - cluster_replication.binlog_index ORDER BY epoch DESC LIMIT 1; + cluster.binlog_index ORDER BY epoch DESC LIMIT 1; let $the_epoch2= `SELECT @the_epoch2`; --replace_result $the_epoch <the_epoch> $the_epoch2 <the_epoch2> eval SELECT inserts,updates,deletes,schemaops FROM - cluster_replication.binlog_index WHERE epoch > $the_epoch AND epoch < $the_epoch2; + cluster.binlog_index WHERE epoch > $the_epoch AND epoch < $the_epoch2; drop table t1; # flush on server2 @@ -63,7 +63,7 @@ connection server2; SHOW TABLES; --replace_result $the_epoch <the_epoch> $the_epoch2 <the_epoch2> eval SELECT inserts,updates,deletes,schemaops FROM - cluster_replication.binlog_index WHERE epoch > $the_epoch AND epoch < $the_epoch2; + cluster.binlog_index WHERE epoch > $the_epoch AND epoch < $the_epoch2; # reset connection server1; |