~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.cc

Merged in some naming things.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1555
1555
                           N_("Default pointer size to be used for MyISAM tables."),
1556
1556
                           NULL, NULL, 6, 2, 7, 0);
1557
1557
 
1558
 
static struct st_mysql_sys_var* system_variables[]= {
 
1558
static drizzle_sys_var* system_variables[]= {
1559
1559
  DRIZZLE_SYSVAR(block_size),
1560
1560
  DRIZZLE_SYSVAR(repair_threads),
1561
1561
  DRIZZLE_SYSVAR(max_sort_file_size),
1565
1565
};
1566
1566
 
1567
1567
 
1568
 
drizzle_declare_plugin
 
1568
DRIZZLE_DECLARE_PLUGIN
1569
1569
{
1570
1570
  "MyISAM",
1571
1571
  "1.0",
1578
1578
  system_variables,           /* system variables */
1579
1579
  NULL                        /* config options                  */
1580
1580
}
1581
 
drizzle_declare_plugin_end;
 
1581
DRIZZLE_DECLARE_PLUGIN_END;