A fix (bug #8489: Strange auto_increment behaviour with HEAP table).

heap/hp_create.c:
  A fix (bug #8489: Strange auto_increment behaviour with HEAP table).
  Handle autoincrement keys MyISAM-way.
include/heap.h:
  A fix (bug #8489: Strange auto_increment behaviour with HEAP table).
  Handle autoincrement keys MyISAM-way.
sql/ha_heap.cc:
  A fix (bug #8489: Strange auto_increment behaviour with HEAP table).
  Handle autoincrement keys MyISAM-way.
This commit is contained in:
unknown 2005-03-15 13:32:12 +04:00
commit 9c04a77e0c
5 changed files with 82 additions and 6 deletions

View file

@ -183,10 +183,10 @@ typedef struct st_heap_info
typedef struct st_heap_create_info
{
uint auto_key;
uint auto_key_type;
ulong max_table_size;
ulonglong auto_increment;
my_bool with_auto_increment;
} HP_CREATE_INFO;
/* Prototypes for heap-functions */