~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/mi_search.cc

mergeĀ lp:~hingo/drizzle/drizzle-auth_ldap-fix-and-docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
/* key handling functions */
17
17
 
18
18
#include "myisam_priv.h"
19
 
#include "drizzled/charset_info.h"
20
 
#include "drizzled/internal/m_string.h"
 
19
#include <drizzled/charset.h>
 
20
#include <drizzled/internal/m_string.h>
21
21
#include <drizzled/util/test.h>
22
22
 
23
23
using namespace drizzled;
44
44
    info->update= ((info->update & (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED)) |
45
45
                   HA_STATE_NEXT_FOUND | HA_STATE_PREV_FOUND);
46
46
  }
47
 
  if (info->opt_flag & WRITE_CACHE_USED && flush_io_cache(&info->rec_cache))
 
47
  if (info->opt_flag & WRITE_CACHE_USED && info->rec_cache.flush())
48
48
    return(-1);
49
49
  return(inx);
50
50
} /* mi_check_index */