~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.cc

  • Committer: Brian Aker
  • Date: 2010-08-08 18:29:57 UTC
  • mto: (1698.1.1 drizzle)
  • mto: This revision was merged to the branch mainline in revision 1699.
  • Revision ID: brian@gaz-20100808182957-c1djnpar9g3gjj4e
This places keycache directly into the table (ie it is now mapped 1=1).

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
static uint64_t max_sort_file_size;
63
63
static uint64_t sort_buffer_size;
64
64
 
 
65
void st_mi_isam_share::setKeyCache()
 
66
{
 
67
  (void)init_key_cache(&key_cache,
 
68
                       myisam_key_cache_block_size,
 
69
                       myisam_key_cache_size,
 
70
                       myisam_key_cache_division_limit, 
 
71
                       myisam_key_cache_age_threshold);
 
72
}
 
73
 
65
74
/*****************************************************************************
66
75
** MyISAM tables
67
76
*****************************************************************************/