~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/mysql.cc

  • Committer: Brian Aker
  • Date: 2008-07-14 22:07:42 UTC
  • Revision ID: brian@tangent.org-20080714220742-y7fjh1mitrfcgfij
Second pass cleanup on removal of my_uint types

Show diffs side-by-side

added added

removed removed

Lines of Context:
2611
2611
  if (result)
2612
2612
  {
2613
2613
    unsigned int num_fields= mysql_num_fields(result);
2614
 
    my_uint64_t num_rows= mysql_num_rows(result);
 
2614
    uint64_t num_rows= mysql_num_rows(result);
2615
2615
    mysql_fetch_fields(result);
2616
2616
    if (num_fields==3 && num_rows==1)
2617
2617
    {
3379
3379
  const char   *query;
3380
3380
  MYSQL_RES    *result;
3381
3381
  MYSQL_ROW    cur;
3382
 
  my_uint64_t num_rows;
 
3382
  uint64_t num_rows;
3383
3383
  
3384
3384
  /* Save current error before calling "show warnings" */
3385
3385
  uint error= mysql_errno(&mysql);