~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/sql_delete.cc

  • Committer: Brian Aker
  • Date: 2008-07-13 22:21:51 UTC
  • Revision ID: brian@tangent.org-20080713222151-fv2tcpbsc829j2oc
Ulonglong to uint64_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
*/
32
32
 
33
33
bool mysql_delete(THD *thd, TABLE_LIST *table_list, COND *conds,
34
 
                  SQL_LIST *order, ha_rows limit, ulonglong options,
 
34
                  SQL_LIST *order, ha_rows limit, uint64_t options,
35
35
                  bool reset_auto_increment)
36
36
{
37
37
  bool          will_batch;
941
941
 
942
942
trunc_by_del:
943
943
  /* Probably InnoDB table */
944
 
  ulonglong save_options= thd->options;
 
944
  uint64_t save_options= thd->options;
945
945
  table_list->lock_type= TL_WRITE;
946
946
  thd->options&= ~(OPTION_BEGIN | OPTION_NOT_AUTOCOMMIT);
947
947
  ha_enable_transaction(thd, FALSE);