Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
e2a35933
Commit
e2a35933
authored
Nov 08, 2001
by
bbaetz%cs.mcgill.ca
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Require (temporarily) mysql >= 3.23.5 for the ~ operator, needed for the
fix to bug 107718. This should be removed when the group stuff lands (bug 60822). r=justdave x 2
parent
4b650396
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
checksetup.pl
checksetup.pl
+9
-1
No files found.
checksetup.pl
View file @
e2a35933
...
@@ -773,7 +773,15 @@ my $drh = DBI->install_driver($db_base)
...
@@ -773,7 +773,15 @@ my $drh = DBI->install_driver($db_base)
if
(
$my_db_check
)
{
if
(
$my_db_check
)
{
# Do we have the database itself?
# Do we have the database itself?
my
$sql_want
=
"3.22.5"
;
# minimum version of MySQL
# XXX - as part of the fix for dataloss bug 107718, we need the ~
# operator, which isn't available in earlier versions, despite what
# the docs say. This is temporary, as we won't need bit fiddling
# once bug 60822 is fixed.
# A requirement for 3.23.x may become permenant though - see
# http://bugzilla.mozilla.org/show_bug.cgi?id=87958
my
$sql_want
=
"3.23.5"
;
#my $sql_want = "3.22.5"; # minimum version of MySQL
# original DSN line was:
# original DSN line was:
# my $dsn = "DBI:$db_base:$my_db_name;$my_db_host;$my_db_port";
# my $dsn = "DBI:$db_base:$my_db_name;$my_db_host;$my_db_port";
...
...
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