~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.cc

  • Committer: Monty Taylor
  • Date: 2009-10-13 06:22:10 UTC
  • mfrom: (1182 staging)
  • mto: This revision was merged to the branch mainline in revision 1184.
  • Revision ID: mordred@inaugust.com-20091013062210-iwnwwcdamjdvlx1m
Merged up with build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
static uint64_t max_sort_file_size;
47
47
static uint64_t sort_buffer_size;
48
48
 
49
 
/* bits in myisam_recover_options */
50
 
const char *myisam_recover_names[] =
51
 
{ "DEFAULT", "BACKUP", "FORCE", "QUICK", NULL};
52
 
TYPELIB myisam_recover_typelib= {array_elements(myisam_recover_names)-1,"",
53
 
                                 myisam_recover_names, NULL};
54
 
 
55
 
 
56
 
 
57
49
/*****************************************************************************
58
50
** MyISAM tables
59
51
*****************************************************************************/