List:Commits« Previous MessageNext Message »
From:tim Date:January 24 2008 12:32am
Subject:bk commit into 5.1 tree (tsmith:1.2653)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of tsmith.  When tsmith 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, 2008-01-23 16:32:19-07:00, tsmith@stripped +1 -0
  Update triggers lib for version MySQL 5.1

  BitKeeper/triggers/triggers-lib.pl@stripped, 2008-01-23 16:32:18-07:00,
tsmith@stripped +4 -8
    Update triggers lib for version MySQL 5.1

diff -Nrup a/BitKeeper/triggers/triggers-lib.pl b/BitKeeper/triggers/triggers-lib.pl
--- a/BitKeeper/triggers/triggers-lib.pl	2008-01-23 16:17:22 -07:00
+++ b/BitKeeper/triggers/triggers-lib.pl	2008-01-23 16:32:18 -07:00
@@ -16,7 +16,7 @@ use Carp;
 use FindBin;
 
 
-my $mysql_version = "5.0";
+my $mysql_version = "5.1";
 
 # These addresses must be kept current in all MySQL versions.
 # See the wiki page InnoDBandOracle.
@@ -27,27 +27,23 @@ my $mysql_version = "5.0";
 my @innodb_to_email = ('tim@stripped');
 my @innodb_cc_email = ();
 
-# This is for MySQL <= 5.0.  Regex which defines the InnoDB files
+# This is for MySQL >= 5.1.  Regex which defines the InnoDB files
 # which should generally not be touched by MySQL developers.
 my $innodb_files_description = <<EOF;
-  innobase/*
+  storage/innobase/*
   mysql-test/t/innodb*    (except mysql-test/t/innodb_mysql*)
   mysql-test/r/innodb*    (except mysql-test/r/innodb_mysql*)
-  sql/ha_innodb*
 EOF
 my $innodb_files_regex = qr{
   ^
   (
   # Case 1: innobase/*
-  innobase/
+  storage/innobase/
   |
   # Case 2: mysql-test/[tr]/innodb* (except innodb_mysql*)
   mysql-test/(t|r)/SCCS/s.innodb
     # The mysql-test/[tr]/innodb_mysql* are OK to edit
     (?!_mysql)
-  |
-  # Case 3: sql/ha_innodb*
-  sql/SCCS/s.ha_innodb
   )
 }x;
 
Thread
bk commit into 5.1 tree (tsmith:1.2653)tim24 Jan 2008