~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.cc

  • Committer: Djellel E. Difallah
  • Date: 2010-03-30 09:29:02 UTC
  • mfrom: (1410.4.2 ded-my-tree)
  • mto: This revision was merged to the branch mainline in revision 1440.
  • Revision ID: ded@ubuntu-20100330092902-hayr13f78x5mvl3y
update references to old my_'s

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"
1516
1516
  uint32_t tmp= *static_cast<const uint32_t *>(save);
1517
1517
  bool error= 0;
1518
1518
 
1519
 
        struct my_option option_limits;
 
1519
        struct option option_limits;
1520
1520
  plugin_opt_set_limits(&option_limits, var);
1521
1521
        option_limits.name= "myisam_key_cache_size";
1522
1522
 
1541
1541
  uint32_t tmp= *static_cast<const uint32_t *>(save);
1542
1542
  bool error= 0;
1543
1543
 
1544
 
        struct my_option option_limits;
 
1544
        struct option option_limits;
1545
1545
  plugin_opt_set_limits(&option_limits, var);
1546
1546
        option_limits.name= "myisam_key_cache_block_size";
1547
1547
 
1566
1566
  uint32_t tmp= *static_cast<const uint32_t *>(save);
1567
1567
  bool error= 0;
1568
1568
 
1569
 
        struct my_option option_limits;
 
1569
        struct option option_limits;
1570
1570
  plugin_opt_set_limits(&option_limits, var);
1571
1571
        option_limits.name= "myisam_key_cache_division_limit";
1572
1572
 
1591
1591
  uint32_t tmp= *static_cast<const uint32_t *>(save);
1592
1592
  bool error= 0;
1593
1593
 
1594
 
        struct my_option option_limits;
 
1594
        struct option option_limits;
1595
1595
  plugin_opt_set_limits(&option_limits, var);
1596
1596
        option_limits.name= "myisam_key_cache_age_threshold";
1597
1597