~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/embedded_innodb/embedded_innodb_engine.h

  • Committer: Brian Aker
  • Date: 2010-04-16 18:34:36 UTC
  • mfrom: (1283.28.40)
  • Revision ID: brian@gaz-20100416183436-e1rr7divbn4rvghi
Merge Stewart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
  double scan_time();
70
70
  int delete_row(const unsigned char *);
71
71
  int delete_all_rows(void);
 
72
  int update_row(const unsigned char * old_data, unsigned char * new_data);
 
73
 
72
74
  void get_auto_increment(uint64_t, uint64_t,
73
75
                          uint64_t,
74
76
                          uint64_t *,
87
89
private:
88
90
  ib_crsr_t cursor;
89
91
  ib_tpl_t tuple;
 
92
 
 
93
  ib_err_t next_innodb_error;
90
94
};
91
95
 
92
96
#endif /* PLUGIN_EMBEDDED_INNODB_EMBEDDED_INNODB_ENGINE_H */