diff options
author | unknown <ramil@mysql.com> | 2005-03-15 13:32:12 +0400 |
---|---|---|
committer | unknown <ramil@mysql.com> | 2005-03-15 13:32:12 +0400 |
commit | 9c04a77e0c69728941387e88bd118adbc0374c45 (patch) | |
tree | 41e3f57ec9e5632602bbaf0aeb4a973e7c77dccb /include/heap.h | |
parent | 2427f3695ccd495eb33ce10c3fb3a636823e8850 (diff) | |
download | mariadb-git-9c04a77e0c69728941387e88bd118adbc0374c45.tar.gz |
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.
Diffstat (limited to 'include/heap.h')
-rw-r--r-- | include/heap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/heap.h b/include/heap.h index ac2b38d1f2d..51f7b0cfa6a 100644 --- a/include/heap.h +++ b/include/heap.h @@ -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 */ |