~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/sql_show.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:
1200
1200
  while ((thd_info=thread_infos.get()))
1201
1201
  {
1202
1202
    protocol->prepare_for_resend();
1203
 
    protocol->store((ulonglong) thd_info->thread_id);
 
1203
    protocol->store((uint64_t) thd_info->thread_id);
1204
1204
    protocol->store(thd_info->user, system_charset_info);
1205
1205
    protocol->store(thd_info->host, system_charset_info);
1206
1206
    protocol->store(thd_info->db, system_charset_info);
1576
1576
          end= int10_to_str(*(long*) value, buff, 10);
1577
1577
          break;
1578
1578
        case SHOW_LONGLONG_STATUS:
1579
 
          value= ((char *) status_var + (ulonglong) value);
 
1579
          value= ((char *) status_var + (uint64_t) value);
1580
1580
          /* fall through */
1581
1581
        case SHOW_LONGLONG:
1582
1582
          end= longlong10_to_str(*(longlong*) value, buff, 10);