~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/mysqldump.c

  • 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:
1486
1486
                                char *ignore_flag)
1487
1487
{
1488
1488
  bool    init=0, delayed, write_data, complete_insert;
1489
 
  my_uint64_t num_fields;
 
1489
  uint64_t num_fields;
1490
1490
  char       *result_table, *opt_quoted_table;
1491
1491
  const char *insert_option;
1492
1492
  char       name_buff[NAME_LEN+3],table_buff[NAME_LEN*2+3];
2788
2788
 
2789
2789
  if ((table_res= mysql_store_result(mysql)))
2790
2790
  {
2791
 
    my_uint64_t num_rows= mysql_num_rows(table_res);
 
2791
    uint64_t num_rows= mysql_num_rows(table_res);
2792
2792
    if (num_rows > 0)
2793
2793
    {
2794
2794
      ulong *lengths;