~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.cc

Merge Stewart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1868
1868
  }
1869
1869
}
1870
1870
 
1871
 
 
1872
 
/**
1873
 
  Repair table: public interface.
1874
 
 
1875
 
  @sa handler::repair()
1876
 
*/
1877
 
 
1878
 
int handler::ha_repair(Session* session, HA_CHECK_OPT* check_opt)
1879
 
{
1880
 
  int result;
1881
 
 
1882
 
  mark_trx_read_write();
1883
 
 
1884
 
  if ((result= repair(session, check_opt)))
1885
 
    return result;
1886
 
  return HA_ADMIN_OK;
1887
 
}
1888
 
 
1889
 
 
1890
1871
/**
1891
1872
  Bulk update row: public interface.
1892
1873