~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.h

Updated pandora-build files to version 0.133

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
 
17
17
#ifndef PLUGIN_MYISAM_HA_MYISAM_H
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 open(const char *name, 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);