summaryrefslogtreecommitdiff
path: root/storage
diff options
context:
space:
mode:
authormskold/marty@mysql.com/linux.site <>2006-12-01 15:49:07 +0100
committermskold/marty@mysql.com/linux.site <>2006-12-01 15:49:07 +0100
commitcde79e4f79c978a4b21882da657e2799c3faf3c6 (patch)
tree810e744e14531cb4121b6b03ee9a470cdb3a9f26 /storage
parent4b7e0b5fd915efe1d1bbc449dd8585f9d97b0a9d (diff)
downloadmariadb-git-cde79e4f79c978a4b21882da657e2799c3faf3c6.tar.gz
Changed mysql.apply_status, mysql.binlog_index, and mysql.schema to mysql.ndb_apply_status, mysql.ndb_binlog_index, and mysql.ndb_schema
Diffstat (limited to 'storage')
-rw-r--r--storage/ndb/tools/restore/Restore.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/ndb/tools/restore/Restore.cpp b/storage/ndb/tools/restore/Restore.cpp
index b51760266cb..ebda5fc9622 100644
--- a/storage/ndb/tools/restore/Restore.cpp
+++ b/storage/ndb/tools/restore/Restore.cpp
@@ -305,8 +305,8 @@ RestoreMetaData::markSysTables()
before we changed the database name of the tables from
"cluster_replication" -> "cluster" -> "mysql"
*/
- strcmp(tableName, "cluster_replication/def/" NDB_APPLY_TABLE) == 0 ||
- strcmp(tableName, "cluster/def/" NDB_APPLY_TABLE) == 0 ||
+ strcmp(tableName, "cluster_replication/def/" OLD_NDB_APPLY_TABLE) == 0 ||
+ strcmp(tableName, "cluster/def/" OLD_NDB_APPLY_TABLE) == 0 ||
strcmp(tableName, NDB_REP_DB "/def/" NDB_APPLY_TABLE) == 0 ||
strcmp(tableName, NDB_REP_DB "/def/" NDB_SCHEMA_TABLE)== 0 )
table->isSysTable = true;