~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/sql_parse.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:
877
877
    STATUS_VAR current_global_status_var;
878
878
    ulong uptime;
879
879
    uint length;
880
 
    ulonglong queries_per_second1000;
 
880
    uint64_t queries_per_second1000;
881
881
    char buff[250];
882
882
    uint buff_len= sizeof(buff);
883
883
 
1012
1012
  if (thd->enable_slow_log && !thd->user_time)
1013
1013
  {
1014
1014
    thd_proc_info(thd, "logging slow query");
1015
 
    ulonglong end_utime_of_query= thd->current_utime();
 
1015
    uint64_t end_utime_of_query= thd->current_utime();
1016
1016
 
1017
1017
    if (((end_utime_of_query - thd->utime_after_lock) >
1018
1018
         thd->variables.long_query_time ||
2709
2709
    SELECT_LEX *param= lex->unit.global_parameters;
2710
2710
    if (!param->explicit_limit)
2711
2711
      param->select_limit=
2712
 
        new Item_int((ulonglong) thd->variables.select_limit);
 
2712
        new Item_int((uint64_t) thd->variables.select_limit);
2713
2713
  }
2714
2714
  if (!(res= open_and_lock_tables(thd, all_tables)))
2715
2715
  {