~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.cc

  • Committer: Brian Aker
  • Date: 2009-02-20 22:48:37 UTC
  • Revision ID: brian@tangent.org-20090220224837-fw5wrf46n4ru3e6a
First pass of stripping uint

Show diffs side-by-side

added added

removed removed

Lines of Context:
1132
1132
      {
1133
1133
        const uint32_t format_section_header_size= 8;
1134
1134
        uint32_t format_section_len= uint2korr(next_chunk+0);
1135
 
        uint flags=  uint4korr(next_chunk+2);
 
1135
        uint32_t flags=  uint4korr(next_chunk+2);
1136
1136
 
1137
1137
        (void)flags;
1138
1138
 
1139
1139
        const char *tablespace= (const char*)next_chunk + format_section_header_size;
1140
 
        uint tablespace_len= strlen(tablespace);
 
1140
        uint32_t tablespace_len= strlen(tablespace);
1141
1141
 
1142
1142
        field_extra_info= next_chunk + format_section_header_size + tablespace_len + 1;
1143
1143
        next_chunk+= format_section_len;
1678
1678
                          Table *table,
1679
1679
                          const char *field_name)
1680
1680
{
1681
 
  uint dir_length, home_dir_length;
 
1681
  uint32_t dir_length, home_dir_length;
1682
1682
  bool result= true;
1683
1683
  TableList tables;
1684
1684
  TableList *save_table_list, *save_first_table, *save_last_table;