~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/archive/ha_archive.h

Remove PLUGIN and MODULES.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
#include <inttypes.h>
20
20
#include <zlib.h>
21
21
#include "azio.h"
22
 
#include <mysys/thr_lock.h>
23
 
#include <mysys/hash.h>
 
22
#include <drizzled/thr_lock.h>
 
23
#include <drizzled/my_hash.h>
24
24
#include <drizzled/cursor.h>
25
25
#include <string>
26
26
 
90
90
  void destroy_record_buffer(archive_record_buffer *r);
91
91
 
92
92
public:
93
 
  ha_archive(drizzled::plugin::StorageEngine &engine, TableShare &table_arg);
 
93
  ha_archive(drizzled::plugin::StorageEngine &engine_arg,
 
94
             TableShare &table_arg);
94
95
  ~ha_archive()
95
96
  { }
96
97
 
97
98
  const char *index_type(uint32_t)
98
99
  { return "NONE"; }
99
 
  uint32_t index_flags(uint32_t, uint32_t, bool) const
100
 
  {
101
 
    return HA_ONLY_WHOLE_INDEX;
102
 
  }
103
100
  void get_auto_increment(uint64_t, uint64_t, uint64_t,
104
101
                          uint64_t *first_value, uint64_t *nb_reserved_values);
105
102
  ha_rows records() { return share->rows_recorded; }