~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_delete.cc

  • Committer: Olaf van der Spek
  • Date: 2011-03-15 20:23:53 UTC
  • mto: (2239.2.1 build)
  • mto: This revision was merged to the branch mainline in revision 2240.
  • Revision ID: olafvdspek@gmail.com-20110315202353-01kpds2os4gkps3o
Refactor includes

Show diffs side-by-side

added added

removed removed

Lines of Context:
181
181
     * Resetting the Diagnostic area to prevent
182
182
     * lp bug# 439719
183
183
     */
184
 
    session->main_da.reset_diagnostics_area();
 
184
    session->main_da().reset_diagnostics_area();
185
185
    session->my_ok((ha_rows) session->rowCount());
186
186
    /*
187
187
      We don't need to call reset_auto_increment in this case, because
347
347
     * Resetting the Diagnostic area to prevent
348
348
     * lp bug# 439719
349
349
     */
350
 
    session->main_da.reset_diagnostics_area();
 
350
    session->main_da().reset_diagnostics_area();
351
351
    session->my_ok((ha_rows) session->rowCount());
352
352
  }
353
353
  session->status_var.deleted_row_count+= deleted;