summaryrefslogtreecommitdiff
path: root/mysql-test/lib/init_db.sql
diff options
context:
space:
mode:
authortomas@poseidon.ndb.mysql.com <>2006-01-12 19:51:02 +0100
committertomas@poseidon.ndb.mysql.com <>2006-01-12 19:51:02 +0100
commit4b731ddfb47cb56bec07a2eded106efc1aa4e532 (patch)
tree5f26130f48df39314474782dafb7b845ebffb2ff /mysql-test/lib/init_db.sql
parent582488e8ac264e4a6c0731cdc2caac62c3d19fe8 (diff)
downloadmariadb-git-4b731ddfb47cb56bec07a2eded106efc1aa4e532.tar.gz
wl2325 wl2324
Diffstat (limited to 'mysql-test/lib/init_db.sql')
-rw-r--r--mysql-test/lib/init_db.sql3
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/lib/init_db.sql b/mysql-test/lib/init_db.sql
index 6235f91f849..ef6383f6680 100644
--- a/mysql-test/lib/init_db.sql
+++ b/mysql-test/lib/init_db.sql
@@ -594,3 +594,6 @@ CREATE TABLE event (
comment varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL default '',
PRIMARY KEY (db,name)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT 'Events';
+
+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;