From 9c04a77e0c69728941387e88bd118adbc0374c45 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 15 Mar 2005 13:32:12 +0400 Subject: 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. --- include/heap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/heap.h') 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 */ -- cgit v1.2.1