~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/row/row0mysql.c

Merge Stewart's dead code removal

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
#include "fil0fil.h"
53
53
#include "ibuf0ibuf.h"
54
54
 
55
 
#include <errno.h>
56
 
 
57
55
/** Provide optional 4.x backwards compatibility for 5.0 and above */
58
56
UNIV_INTERN ibool       row_rollback_on_timeout = FALSE;
59
57
 
2965
2963
                dict_table_change_id_in_cache(table, new_id);
2966
2964
        }
2967
2965
 
2968
 
        /* 
2969
 
          MySQL calls ha_innobase::reset_auto_increment() which does
2970
 
          the same thing. 
2971
 
        */
 
2966
        /* MySQL calls ha_innobase::reset_auto_increment() which does
 
2967
        the same thing. */
2972
2968
        dict_table_autoinc_lock(table);
2973
2969
        dict_table_autoinc_initialize(table, 1);
2974
2970
        dict_table_autoinc_unlock(table);