~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.h

  • Committer: lbieber
  • Date: 2010-10-05 22:23:12 UTC
  • mfrom: (1813.1.4 build)
  • Revision ID: lbieber@orisndriz08-20101005222312-weuq0ardk3gcryau
Merge Travis - 621861 - convert structs to classes
Merge Billy - 621331 - Replace use of stringstream with boost::lexical_cast
Merge Travis - 621861 = To change C structs to C++ classes in Drizzle
Merge Andrew - fix bug 653300 - Syntax error on inport of a SQL file produced by drizzledump

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
 public:
36
36
  ha_myisam(drizzled::plugin::StorageEngine &engine,
37
 
            drizzled::Table &table_arg);
 
37
            drizzled::TableShare &table_arg);
38
38
  ~ha_myisam() {}
39
39
  Cursor *clone(drizzled::memory::Root *mem_root);
40
40
  const char *index_type(uint32_t key_number);
42
42
  int doEndIndexScan();
43
43
  uint32_t checksum() const;
44
44
 
45
 
  int doOpen(const drizzled::identifier::Table &identifier, int mode, uint32_t test_if_locked);
 
45
  int doOpen(const drizzled::TableIdentifier &identifier, int mode, uint32_t test_if_locked);
46
46
  int close(void);
47
47
  int doInsertRecord(unsigned char * buf);
48
48
  int doUpdateRecord(const unsigned char * old_data, unsigned char * new_data);