~shubhamsomani92/drizzle/trunk-bug-995739

« back to all changes in this revision

Viewing changes to plugin/memory/ha_heap.cc

  • Committer: Continuous Integration
  • Date: 2013-03-07 03:15:07 UTC
  • mfrom: (2630.1.7 create-tmp-table)
  • Revision ID: ci@drizzle.org-20130307031507-bqgrashrp5m3fw8x
Merge lp:~stewart/drizzle/misc-cleanups Build: jenkins-Drizzle-Builder-175

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <drizzled/session/table_messages.h>
25
25
#include <drizzled/statistics_variables.h>
26
26
#include <drizzled/system_variables.h>
 
27
#include <drizzled/key_part_info.h>
27
28
 
28
29
#include <boost/thread/mutex.hpp>
29
30
 
105
106
  uint32_t max_supported_keys()          const { return MAX_KEY; }
106
107
  uint32_t max_supported_key_part_length() const { return MAX_KEY_LENGTH; }
107
108
 
108
 
  uint32_t index_flags(enum  ha_key_alg ) const
 
109
  uint32_t index_flags(drizzled::message::Table::Index::IndexType) const
109
110
  {
110
111
    return ( HA_ONLY_WHOLE_INDEX | HA_KEY_SCAN_NOT_ROR);
111
112
  }