~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/truncate.cc

  • Committer: brian
  • Date: 2009-11-11 19:42:27 UTC
  • mfrom: (1211 staging)
  • mto: (1211.1.4 staging)
  • mto: This revision was merged to the branch mainline in revision 1212.
  • Revision ID: brian@orisndriz04-20091111194227-mky4am3ym0dlosaa
Update for Cursor renaming.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
    return true;
46
46
  }
47
47
 
48
 
  bool res= mysql_truncate(*session, first_table, false);
49
 
  return res;
 
48
  return mysql_truncate(*session, first_table);
50
49
}
51
50
 
52
51
} /* namespace drizzled */