summaryrefslogtreecommitdiff
path: root/BitKeeper
diff options
context:
space:
mode:
authortsmith@ramayana.hindu.god <>2008-01-23 16:32:19 -0700
committertsmith@ramayana.hindu.god <>2008-01-23 16:32:19 -0700
commita2a682f636c123b753bcaa3449c396888f33e00f (patch)
tree32ec178d3dda9b72fad45c674c6d31544f0f875b /BitKeeper
parentf405fefcf488dfdaded2dc6c3d098c7fdf4f796c (diff)
downloadmariadb-git-a2a682f636c123b753bcaa3449c396888f33e00f.tar.gz
Update triggers lib for version MySQL 5.1
Diffstat (limited to 'BitKeeper')
-rw-r--r--BitKeeper/triggers/triggers-lib.pl12
1 files changed, 4 insertions, 8 deletions
diff --git a/BitKeeper/triggers/triggers-lib.pl b/BitKeeper/triggers/triggers-lib.pl
index 834cd9093d0..2eae70c034a 100644
--- a/BitKeeper/triggers/triggers-lib.pl
+++ b/BitKeeper/triggers/triggers-lib.pl
@@ -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@mysql.com');
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;