Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
a2a682f6
Commit
a2a682f6
authored
Jan 23, 2008
by
tsmith@ramayana.hindu.god
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update triggers lib for version MySQL 5.1
parent
f405fefc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
8 deletions
+4
-8
BitKeeper/triggers/triggers-lib.pl
BitKeeper/triggers/triggers-lib.pl
+4
-8
No files found.
BitKeeper/triggers/triggers-lib.pl
View file @
a2a682f6
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment