~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.h

  • Committer: Muhammad Umair
  • Date: 2011-08-16 11:47:29 UTC
  • mto: This revision was merged to the branch mainline in revision 2402.
  • Revision ID: umair@remotedesk-20110816114729-w6x88fj0sow4g3z9
mergeĀ lp:~mumair/drizzle/drizzle-IPv6Address

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
15
15
 
16
16
 
17
 
#ifndef PLUGIN_MYISAM_HA_MYISAM_H
18
 
#define PLUGIN_MYISAM_HA_MYISAM_H
 
17
#pragma once
19
18
 
20
19
#include <drizzled/cursor.h>
21
20
#include <drizzled/thr_lock.h>
42
41
  int doEndIndexScan();
43
42
  uint32_t checksum() const;
44
43
 
45
 
  int doOpen(const drizzled::TableIdentifier &identifier, int mode, uint32_t test_if_locked);
 
44
  int doOpen(const drizzled::identifier::Table &identifier, int mode, uint32_t test_if_locked);
46
45
  int close(void);
47
46
  int doInsertRecord(unsigned char * buf);
48
47
  int doUpdateRecord(const unsigned char * old_data, unsigned char * new_data);
96
95
  drizzled::key_map keys_with_parts;
97
96
};
98
97
 
99
 
#endif /* PLUGIN_MYISAM_HA_MYISAM_H */