1
0
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:
mskold/marty@mysql.com/linux.site
2006-12-01 15:49:07 +01:00
parent 4b7e0b5fd9
commit cde79e4f79
34 changed files with 247 additions and 245 deletions

View File

@ -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