Patch for bug 263165: Make Bugzilla specify table type as MyISAM when creating tables; patch by Byron Jones (glob) <bugzilla@glob.com.au>, r=kiko, a=justdave.
git-svn-id: svn://10.0.0.236/trunk@163482 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -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";
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user