~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/archive/ha_archive.cc

  • Committer: Brian Aker
  • Date: 2009-12-01 01:54:04 UTC
  • mto: (1234.1.4 push)
  • mto: This revision was merged to the branch mainline in revision 1235.
  • Revision ID: brian@gaz-20091201015404-19qmqriauoeve2x5
Move max key stuff up to engine.

Show diffs side-by-side

added added

removed removed

Lines of Context:
175
175
  ArchiveShare *findOpenTable(const string table_name);
176
176
  void addOpenTable(const string &table_name, ArchiveShare *);
177
177
  void deleteOpenTable(const string &table_name);
 
178
 
 
179
  uint32_t max_supported_keys()          const { return 1; }
 
180
  uint32_t max_supported_key_length()    const { return sizeof(uint64_t); }
 
181
  uint32_t max_supported_key_part_length() const { return sizeof(uint64_t); }
178
182
};
179
183
 
180
184