~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/ha_myisam.cc

  • Committer: Brian Aker
  • Date: 2009-01-15 04:00:23 UTC
  • Revision ID: brian@tangent.org-20090115040023-v9n0b57f5fg18d0l
More myisam plugin conversion.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1888
1888
                                N_("The buffer that is allocated when sorting the index when doing a REPAIR or when creating indexes with CREATE INDEX or ALTER TABLE."),
1889
1889
                                NULL, NULL, 8192*1024, 1024, UINT64_MAX, 0);
1890
1890
 
 
1891
extern uint32_t data_pointer_size;
 
1892
static DRIZZLE_SYSVAR_UINT(data_pointer_size, data_pointer_size,
 
1893
                           PLUGIN_VAR_RQCMDARG,
 
1894
                           N_("Default pointer size to be used for MyISAM tables."),
 
1895
                           NULL, NULL, 6, 2, 7, 0);
 
1896
 
1891
1897
static struct st_mysql_sys_var* system_variables[]= {
1892
1898
  DRIZZLE_SYSVAR(block_size),
1893
1899
  DRIZZLE_SYSVAR(repair_threads),
1894
1900
  DRIZZLE_SYSVAR(max_sort_file_size),
1895
1901
  DRIZZLE_SYSVAR(sort_buffer_size),
 
1902
  DRIZZLE_SYSVAR(data_pointer_size),
1896
1903
  NULL
1897
1904
};
1898
1905