~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/myisam.h

  • Committer: Brian Aker
  • Date: 2010-12-16 20:06:09 UTC
  • Revision ID: brian@tangent.org-20101216200609-xigmi0vbldradofi
I've mentioned this to Paul. Once we have the bits in for session around
thread he will go in and fix what he needs to fix. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#ifndef PLUGIN_MYISAM_MYISAM_H
19
19
#define PLUGIN_MYISAM_MYISAM_H
20
20
 
21
 
#include "drizzled/identifier.h"
 
21
#include "drizzled/identifier/table.h"
22
22
 
23
23
#include <drizzled/key_map.h>
24
24
 
277
277
 
278
278
extern int mi_close(struct st_myisam_info *file);
279
279
extern int mi_delete(struct st_myisam_info *file,const unsigned char *buff);
280
 
extern struct st_myisam_info *mi_open(const drizzled::identifier::Table &identifier,
 
280
extern struct st_myisam_info *mi_open(const drizzled::TableIdentifier &identifier,
281
281
                                      int mode,
282
282
                                      uint32_t wait_if_locked);
283
283
extern int mi_panic(enum drizzled::ha_panic_function function);