~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/cursor.h

  • Committer: Brian Aker
  • Date: 2009-11-26 02:37:40 UTC
  • mto: (1226.1.2 push)
  • mto: This revision was merged to the branch mainline in revision 1227.
  • Revision ID: brian@gaz-20091126023740-oqpp5xsxmirrgbnp
Remove OPTIMIZE, place in ALTER TABLE (which does the same thing).

Show diffs side-by-side

added added

removed removed

Lines of Context:
279
279
                         uint32_t *dup_key_found);
280
280
  int ha_delete_all_rows();
281
281
  int ha_reset_auto_increment(uint64_t value);
282
 
  int ha_optimize(Session* session, HA_CHECK_OPT* check_opt);
283
282
  int ha_analyze(Session* session, HA_CHECK_OPT* check_opt);
284
283
 
285
284
  int ha_disable_indexes(uint32_t mode);
745
744
  virtual int reset_auto_increment(uint64_t)
746
745
  { return HA_ERR_WRONG_COMMAND; }
747
746
 
748
 
  virtual int optimize(Session *)
749
 
  { return HA_ADMIN_NOT_IMPLEMENTED; }
750
 
 
751
747
  virtual int analyze(Session *)
752
748
  { return HA_ADMIN_NOT_IMPLEMENTED; }
753
749