~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/myisam.h

  • Committer: Stewart Smith
  • Date: 2010-09-23 05:33:01 UTC
  • mto: (1804.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1806.
  • Revision ID: stewart@flamingspork.com-20100923053301-b2b528g2dm5owa97
HailDB test suite loads the HailDB plugin (not the old name, which was 'embedded_innodb')

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
   You should have received a copy of the GNU General Public License
13
13
   along with this program; if not, write to the Free Software
14
 
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
16
/* This file should be included when using myisam_funktions */
17
17
 
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
 
25
25
#include <drizzled/base.h>
26
26
#ifndef _m_ctype_h
27
 
#include <drizzled/charset_info.h>
 
27
#include "drizzled/charset_info.h"
28
28
#endif
29
29
#ifndef _keycache_h
30
30
#include "keycache.h"
31
31
#endif
32
32
#include <plugin/myisam/my_handler.h>
33
 
#include <drizzled/internal/iocache.h>
 
33
#include "drizzled/internal/iocache.h"
34
34
 
35
35
/*
36
36
  Limit max keys according to HA_MAX_POSSIBLE_KEY
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);