summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorbbaetz%cs.mcgill.ca <>2001-11-15 00:12:23 +0100
committerbbaetz%cs.mcgill.ca <>2001-11-15 00:12:23 +0100
commit0f0a89556565f7cf399e53da9366b90ef5d7a815 (patch)
treee89ff7aa8a49b448400b9b1540a96a69e1429a61 /checksetup.pl
parentc743409389bb5ca4a04c0e11c91a5aae308319e0 (diff)
downloadbugzilla-0f0a89556565f7cf399e53da9366b90ef5d7a815.tar.gz
bugzilla-0f0a89556565f7cf399e53da9366b90ef5d7a815.tar.xz
Bug 107718 pt 2 - use subtraction instead of the ~ operator, which older
mysql versions don't support. Remove the checksetup.pl restriction, too. r=jake x2
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl10
1 files changed, 1 insertions, 9 deletions
diff --git a/checksetup.pl b/checksetup.pl
index a72492226..0a3edac79 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -773,15 +773,7 @@ my $drh = DBI->install_driver($db_base)
if ($my_db_check) {
# Do we have the database itself?
- # 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
+ my $sql_want = "3.22.5"; # minimum version of MySQL
# original DSN line was:
# my $dsn = "DBI:$db_base:$my_db_name;$my_db_host;$my_db_port";