]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Patch for bug 263165: Make Bugzilla specify table type as MyISAM when creating tables...
authorjocuri%softhome.net <>
Sun, 10 Oct 2004 03:20:16 +0000 (03:20 +0000)
committerjocuri%softhome.net <>
Sun, 10 Oct 2004 03:20:16 +0000 (03:20 +0000)
checksetup.pl

index 7be7ee432dda5eda46bd426aeac952b6e8d9d489..c74a760c041d37633024865103554f651353e4bb 100755 (executable)
@@ -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";
 }