~stewart/drizzle/embedded-innodb-rnd-read

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.cc

  • Committer: Stewart Smith
  • Date: 2010-04-06 07:37:28 UTC
  • mfrom: (1310.1.44)
  • Revision ID: stewart@flamingspork.com-20100406073728-ml0gfkm3n3yq3lj3
Merged embedded-innodb-write-row into embedded-innodb-rnd-read.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#include "myisampack.h"
21
21
#include "ha_myisam.h"
22
22
#include "myisam_priv.h"
23
 
#include "drizzled/my_getopt.h"
 
23
#include "drizzled/option.h"
24
24
#include "drizzled/internal/my_bit.h"
25
25
#include "drizzled/internal/m_string.h"
26
26
#include "drizzled/util/test.h"
1525
1525
  uint32_t tmp= *static_cast<const uint32_t *>(save);
1526
1526
  bool error= 0;
1527
1527
 
1528
 
        struct my_option option_limits;
 
1528
        struct option option_limits;
1529
1529
  plugin_opt_set_limits(&option_limits, var);
1530
1530
        option_limits.name= "myisam_key_cache_size";
1531
1531
 
1550
1550
  uint32_t tmp= *static_cast<const uint32_t *>(save);
1551
1551
  bool error= 0;
1552
1552
 
1553
 
        struct my_option option_limits;
 
1553
        struct option option_limits;
1554
1554
  plugin_opt_set_limits(&option_limits, var);
1555
1555
        option_limits.name= "myisam_key_cache_block_size";
1556
1556
 
1575
1575
  uint32_t tmp= *static_cast<const uint32_t *>(save);
1576
1576
  bool error= 0;
1577
1577
 
1578
 
        struct my_option option_limits;
 
1578
        struct option option_limits;
1579
1579
  plugin_opt_set_limits(&option_limits, var);
1580
1580
        option_limits.name= "myisam_key_cache_division_limit";
1581
1581
 
1600
1600
  uint32_t tmp= *static_cast<const uint32_t *>(save);
1601
1601
  bool error= 0;
1602
1602
 
1603
 
        struct my_option option_limits;
 
1603
        struct option option_limits;
1604
1604
  plugin_opt_set_limits(&option_limits, var);
1605
1605
        option_limits.name= "myisam_key_cache_age_threshold";
1606
1606