diff options
author | jocuri%softhome.net <> | 2004-10-10 05:21:39 +0200 |
---|---|---|
committer | jocuri%softhome.net <> | 2004-10-10 05:21:39 +0200 |
commit | 40046fe7dd4fa67d39d15a5d4e9d90111193bd60 (patch) | |
tree | 533c67d4c1761acaa5a14998caa0ba4d082341ac | |
parent | 1f6ed9be7b15842f750a989a909f2ec64d0fb2ad (diff) | |
download | bugzilla-40046fe7dd4fa67d39d15a5d4e9d90111193bd60.tar.gz bugzilla-40046fe7dd4fa67d39d15a5d4e9d90111193bd60.tar.xz |
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.
-rwxr-xr-x | checksetup.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl index 6d8090c35..0a5bb6109 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"; } |