~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump.cc

  • Committer: Brian Aker
  • Date: 2009-02-21 00:18:15 UTC
  • Revision ID: brian@tangent.org-20090221001815-x20e8h71e984lvs1
Completion (?) of uint conversion.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2012
2012
    total_length= opt_net_buffer_length;                /* Force row break */
2013
2013
    row_break=0;
2014
2014
    rownr=0;
2015
 
    init_length=(uint) insert_pat.length()+4;
 
2015
    init_length=(uint32_t) insert_pat.length()+4;
2016
2016
    if (opt_xml)
2017
2017
      print_xml_tag(md_result_file, "\t", "\n", "table_data", "name=", table,
2018
2018
              NULL);
2917
2917
        fputc(' ',file);
2918
2918
        fputs(prefix, file);
2919
2919
        if (string_value)
2920
 
          unescape(file,row[0],(uint) strlen(row[0]));
 
2920
          unescape(file,row[0],(uint32_t) strlen(row[0]));
2921
2921
        else
2922
2922
          fputs(row[0], file);
2923
2923
        check_io(file);