~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_load.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:
482
482
      {
483
483
        uint32_t length;
484
484
        unsigned char save_chr;
485
 
        if ((length=(uint) (read_info.row_end-pos)) >
 
485
        if ((length=(uint32_t) (read_info.row_end-pos)) >
486
486
            field->field_length)
487
487
          length=field->field_length;
488
488
        save_chr=pos[length]; pos[length]='\0'; // Safeguard aganst malloc
571
571
        continue;
572
572
 
573
573
      pos=read_info.row_start;
574
 
      length=(uint) (read_info.row_end-pos);
 
574
      length=(uint32_t) (read_info.row_end-pos);
575
575
 
576
576
      real_item= item->real_item();
577
577