]> 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:21:39 +0000 (03:21 +0000)
committerjocuri%softhome.net <>
Sun, 10 Oct 2004 03:21:39 +0000 (03:21 +0000)
checksetup.pl

index 6d8090c3578fc4b7caf90d9d86f75d5a3e1b2cd8..0a5bb61093accdbdfdcac200c92ceb6da3c1acf7 100755 (executable)
@@ -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";
 }