~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/cursor.cc

  • Committer: Brian Aker
  • Date: 2009-11-26 18:48:20 UTC
  • mfrom: (1226.1.3 push)
  • Revision ID: brian@gaz-20091126184820-hltr0upee0ahopsj
Bundle Brian + Monty  (been through staging, just collecting it as want
overall patch as seen by staging).

Show diffs side-by-side

added added

removed removed

Lines of Context:
747
747
 
748
748
 
749
749
/**
750
 
  Optimize table: public interface.
751
 
 
752
 
  @sa Cursor::optimize()
753
 
*/
754
 
 
755
 
int
756
 
Cursor::ha_optimize(Session* session, HA_CHECK_OPT*)
757
 
{
758
 
  mark_trx_read_write();
759
 
 
760
 
  return optimize(session);
761
 
}
762
 
 
763
 
 
764
 
/**
765
750
  Analyze table: public interface.
766
751
 
767
752
  @sa Cursor::analyze()