~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzle.c

MergeĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2579
2579
  if (result)
2580
2580
  {
2581
2581
    unsigned int num_fields= mysql_num_fields(result);
2582
 
    my_uint64_t num_rows= mysql_num_rows(result);
 
2582
    uint64_t num_rows= mysql_num_rows(result);
2583
2583
    mysql_fetch_fields(result);
2584
2584
    if (num_fields==3 && num_rows==1)
2585
2585
    {
3341
3341
  const char   *query;
3342
3342
  MYSQL_RES    *result;
3343
3343
  MYSQL_ROW    cur;
3344
 
  my_uint64_t num_rows;
 
3344
  uint64_t num_rows;
3345
3345
  
3346
3346
  /* Save current error before calling "show warnings" */
3347
3347
  uint error= mysql_errno(&mysql);