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 | fff30b90881c24d71accf6f696f5c0ee2a41bfc2 (patch) | |
tree | 71bfaf53528b1342c5523ee010594dc644711eb0 /mysql-test/r/ndb_binlog_multi.result | |
parent | 29d0fa4bd442b5ee8115661afd153dd86c576cc9 (diff) | |
download | mariadb-git-fff30b90881c24d71accf6f696f5c0ee2a41bfc2.tar.gz |
Bug #17805 Cluster_replication database should be renamed to just cluster
Diffstat (limited to 'mysql-test/r/ndb_binlog_multi.result')
-rw-r--r-- | mysql-test/r/ndb_binlog_multi.result | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mysql-test/r/ndb_binlog_multi.result b/mysql-test/r/ndb_binlog_multi.result index 5f739327db2..808b96bcc3d 100644 --- a/mysql-test/r/ndb_binlog_multi.result +++ b/mysql-test/r/ndb_binlog_multi.result @@ -12,7 +12,7 @@ a b 1 1 2 2 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; @the_epoch:=epoch inserts updates deletes schemaops <the_epoch> 2 0 0 0 SELECT * FROM t2 ORDER BY a; @@ -20,24 +20,24 @@ a b 1 1 2 2 SELECT inserts,updates,deletes,schemaops FROM -cluster_replication.binlog_index WHERE epoch=<the_epoch>; +cluster.binlog_index WHERE epoch=<the_epoch>; inserts updates deletes schemaops 2 0 0 0 DROP TABLE t2; CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE = NDB; INSERT INTO t1 VALUES (1),(2); 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; @the_epoch2:=epoch inserts updates deletes schemaops <the_epoch2> 2 0 0 0 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>; inserts updates deletes schemaops 0 0 0 1 drop table t1; SHOW TABLES; Tables_in_test 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>; inserts updates deletes schemaops 0 0 0 1 |