summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorunknown <ramil@mysql.com>2005-03-15 13:32:12 +0400
committerunknown <ramil@mysql.com>2005-03-15 13:32:12 +0400
commit9c04a77e0c69728941387e88bd118adbc0374c45 (patch)
tree41e3f57ec9e5632602bbaf0aeb4a973e7c77dccb /include
parent2427f3695ccd495eb33ce10c3fb3a636823e8850 (diff)
downloadmariadb-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')
-rw-r--r--include/heap.h2
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 */