mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Changed mysql.apply_status, mysql.binlog_index, and mysql.schema to mysql.ndb_apply_status, mysql.ndb_binlog_index, and mysql.ndb_schema
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
|
||||
#
|
||||
# Currently test only works with ndb since it retrieves "old"
|
||||
# binlog positions with mysql.binlog_index and apply_status;
|
||||
# binlog positions with mysql.ndb_binlog_index and ndb_apply_status;
|
||||
#
|
||||
|
||||
# stop the save
|
||||
@ -94,11 +94,11 @@ STOP SLAVE;
|
||||
--connection master
|
||||
reset master;
|
||||
# should now contain nothing
|
||||
select * from mysql.binlog_index;
|
||||
select * from mysql.ndb_binlog_index;
|
||||
|
||||
--connection slave
|
||||
reset slave;
|
||||
# should now contain nothing
|
||||
select * from mysql.apply_status;
|
||||
select * from mysql.ndb_apply_status;
|
||||
|
||||
# End 5.1 Test
|
||||
|
Reference in New Issue
Block a user