~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/sql_update.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:
195
195
  READ_RECORD   info;
196
196
  SELECT_LEX    *select_lex= &thd->lex->select_lex;
197
197
  bool          need_reopen;
198
 
  ulonglong     id;
 
198
  uint64_t     id;
199
199
  List<Item> all_fields;
200
200
  THD::killed_state killed_status= THD::NOT_KILLED;
201
201
  
991
991
                        List<Item> *fields,
992
992
                        List<Item> *values,
993
993
                        COND *conds,
994
 
                        ulonglong options,
 
994
                        uint64_t options,
995
995
                        enum enum_duplicates handle_duplicates, bool ignore,
996
996
                        SELECT_LEX_UNIT *unit, SELECT_LEX *select_lex)
997
997
{
1692
1692
bool multi_update::send_eof()
1693
1693
{
1694
1694
  char buff[STRING_BUFFER_USUAL_SIZE];
1695
 
  ulonglong id;
 
1695
  uint64_t id;
1696
1696
  THD::killed_state killed_status= THD::NOT_KILLED;
1697
1697
  
1698
1698
  thd_proc_info(thd, "updating reference tables");