From: jocuri%softhome.net <> Date: Sun, 10 Oct 2004 03:21:39 +0000 (+0000) Subject: Patch for bug 263165: Make Bugzilla specify table type as MyISAM when creating tables... X-Git-Tag: bugzilla-2.19.1~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=40046fe7dd4fa67d39d15a5d4e9d90111193bd60;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 6d8090c357..0a5bb61093 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -2076,7 +2076,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"; }