Submitted by TonyShadwick on Mon, 06/11/2007 - 14:29
One can set the default table type to ndbcluster in my.cnf, and presuming that users never mess with that drop-down, all is well, however the option needs to be in the list. Adding it is a very simple patch. Starting at line 29 of table_form.cgi, change to this:
print &ui_table_row($text{'table_type'},
&ui_select("type", "",
[ [ "", $text{'default'} ], [ "isam" ], [ "myisam" ],
[ "heap" ], [ "merge" ], [ "innodb" ], [ "ndbcluster" ] ]));
Status:
Closed (fixed)