summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authortomas@poseidon.ndb.mysql.com <>2006-03-01 13:31:21 +0100
committertomas@poseidon.ndb.mysql.com <>2006-03-01 13:31:21 +0100
commitdf6bb1994ba5fde5222a2170f6d4d21fa7996188 (patch)
tree71bfaf53528b1342c5523ee010594dc644711eb0 /scripts
parent70718ac25ae420007c54452fdf758ba9f16f7f4a (diff)
downloadmariadb-git-df6bb1994ba5fde5222a2170f6d4d21fa7996188.tar.gz
Bug #17805 Cluster_replication database should be renamed to just cluster
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mysql_create_system_tables.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/mysql_create_system_tables.sh b/scripts/mysql_create_system_tables.sh
index 94450d23f1e..287a83fbc99 100644
--- a/scripts/mysql_create_system_tables.sh
+++ b/scripts/mysql_create_system_tables.sh
@@ -874,8 +874,8 @@ $c_pp
$c_gl
$c_sl
$c_ev
-CREATE DATABASE IF NOT EXISTS cluster_replication;
-CREATE TABLE IF NOT EXISTS cluster_replication.binlog_index (Position BIGINT UNSIGNED NOT NULL, File VARCHAR(255) NOT NULL, epoch BIGINT UNSIGNED NOT NULL, inserts BIGINT UNSIGNED NOT NULL, updates BIGINT UNSIGNED NOT NULL, deletes BIGINT UNSIGNED NOT NULL, schemaops BIGINT UNSIGNED NOT NULL, PRIMARY KEY(epoch)) ENGINE=MYISAM;
+CREATE DATABASE IF NOT EXISTS cluster;
+CREATE TABLE IF NOT EXISTS cluster.binlog_index (Position BIGINT UNSIGNED NOT NULL, File VARCHAR(255) NOT NULL, epoch BIGINT UNSIGNED NOT NULL, inserts BIGINT UNSIGNED NOT NULL, updates BIGINT UNSIGNED NOT NULL, deletes BIGINT UNSIGNED NOT NULL, schemaops BIGINT UNSIGNED NOT NULL, PRIMARY KEY(epoch)) ENGINE=MYISAM;
END_OF_DATA