From: jocuri%softhome.net <> Date: Sun, 10 Oct 2004 03:21:08 +0000 (+0000) Subject: Patch for bug 263165: Make Bugzilla specify table type as MyISAM when creating tables... X-Git-Tag: bugzilla-2.18rc3~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6dd7c3ad4c6e3a1e3247b034b818cd07d232ca12;p=thirdparty%2Fbugzilla.git Patch for bug 263165: Make Bugzilla specify table type as MyISAM when creating tables; patch by Byron Jones (glob) , r=kiko, a=justdave. --- diff --git a/checksetup.pl b/checksetup.pl index ca92ef22a1..30167f1975 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -2024,7 +2024,7 @@ while (my ($tabname, $fielddef) = each %table) { $fielddef =~ s/\$my_opsys/$my_opsys/; $fielddef =~ s/\$my_platforms/$my_platforms/; - $dbh->do("CREATE TABLE $tabname (\n$fielddef\n)") + $dbh->do("CREATE TABLE $tabname (\n$fielddef\n) TYPE = MYISAM") or die "Could not create table '$tabname'. Please check your '$db_base' access.\n"; }