~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/table.cc

Merged from trunk. 
Moved resolve_stack_dump to mysql-test. 
Removed perl-sub cruft in mysql-test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
736
736
      }
737
737
      next_chunk+= str_db_type_length + 2;
738
738
    }
739
 
#if MYSQL_VERSION_ID < 50200
740
 
    if (share->mysql_version >= 50106 && share->mysql_version <= 50109)
741
 
    {
742
 
      /*
743
 
         Partition state array was here in version 5.1.6 to 5.1.9, this code
744
 
         makes it possible to load a 5.1.6 table in later versions. Can most
745
 
         likely be removed at some point in time. Will only be used for
746
 
         upgrades within 5.1 series of versions. Upgrade to 5.2 can only be
747
 
         done from newer 5.1 versions.
748
 
      */
749
 
      next_chunk+= 4;
750
 
    }
751
 
    else
752
 
#endif
753
739
    if (share->mysql_version >= 50110)
754
740
    {
755
741
      /* New auto_partitioned indicator introduced in 5.1.11 */