From 6dd7c3ad4c6e3a1e3247b034b818cd07d232ca12 Mon Sep 17 00:00:00 2001 From: "jocuri%softhome.net" <> Date: Sun, 10 Oct 2004 03:21:08 +0000 Subject: [PATCH] Patch for bug 263165: Make Bugzilla specify table type as MyISAM when creating tables; patch by Byron Jones (glob) , r=kiko, a=justdave. --- checksetup.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checksetup.pl b/checksetup.pl index ca92ef22a1..30167f1975 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -2024,7 +2024,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"; } -- 2.47.2