List:Commits« Previous MessageNext Message »
From:msvensson Date:November 29 2006 8:24am
Subject:bk commit into 5.1 tree (msvensson:1.2406)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of msvensson. When msvensson does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet@stripped, 2006-11-29 09:24:20+01:00, msvensson@neptunus.(none) +2 -0
  The binlog index table will be created in the mysql system db
  selected with "use mysql" - no need to do it explicitly anymore

  mysql-test/lib/init_db.sql@stripped, 2006-11-29 09:24:15+01:00, msvensson@neptunus.(none) +1 -1
    The binlog index table will be created in the mysql system db
    selected with "use mysql" - no need to do it explicitly anymore

  scripts/mysql_create_system_tables.sh@stripped, 2006-11-29 09:24:16+01:00, msvensson@neptunus.(none) +1 -1
    The binlog index table will be created in the mysql system db
    selected with "use mysql" - no need to do it explicitly anymore

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	msvensson
# Host:	neptunus.(none)
# Root:	/home/msvensson/mysql/mysql-5.1-new-maint

--- 1.28/mysql-test/lib/init_db.sql	2006-11-29 09:24:26 +01:00
+++ 1.29/mysql-test/lib/init_db.sql	2006-11-29 09:24:26 +01:00
@@ -634,4 +634,4 @@ CREATE TABLE event (
   PRIMARY KEY  (db, name)
 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT 'Events';
 
-CREATE TABLE IF NOT EXISTS mysql.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 TABLE IF NOT EXISTS 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;

--- 1.41/scripts/mysql_create_system_tables.sh	2006-11-29 09:24:26 +01:00
+++ 1.42/scripts/mysql_create_system_tables.sh	2006-11-29 09:24:26 +01:00
@@ -874,7 +874,7 @@ $c_pp
 $c_gl
 $c_sl
 $c_ev
-CREATE TABLE IF NOT EXISTS mysql.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 TABLE IF NOT EXISTS 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
 
Thread
bk commit into 5.1 tree (msvensson:1.2406)msvensson29 Nov