From: jocuri%softhome.net <> Date: Sun, 10 Oct 2004 03:20:16 +0000 (+0000) Subject: Patch for bug 263165: Make Bugzilla specify table type as MyISAM when creating tables... X-Git-Tag: bugzilla-2.16.7~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6df20c2fd15cb356e909a83d0c6c835b932eeb99;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 7be7ee432d..c74a760c04 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -1641,7 +1641,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"; }