~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.h

Merge Stewart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
285
285
 
286
286
  /** to be actually called to get 'check()' functionality*/
287
287
  int ha_check(Session *session, HA_CHECK_OPT *check_opt);
288
 
  int ha_repair(Session* session, HA_CHECK_OPT* check_opt);
 
288
 
289
289
  void ha_start_bulk_insert(ha_rows rows);
290
290
  int ha_end_bulk_insert();
291
291
  int ha_bulk_update_row(const unsigned char *old_data, unsigned char *new_data,
787
787
  virtual int check(Session *, HA_CHECK_OPT *)
788
788
  { return HA_ADMIN_NOT_IMPLEMENTED; }
789
789
 
790
 
  /**
791
 
     In this method check_opt can be modified
792
 
     to specify CHECK option to use to call check()
793
 
     upon the table.
794
 
  */
795
 
  virtual int repair(Session *, HA_CHECK_OPT *)
796
 
  { return HA_ADMIN_NOT_IMPLEMENTED; }
797
790
  virtual void start_bulk_insert(ha_rows)
798
791
  {}
799
792
  virtual int end_bulk_insert(void) { return 0; }