diff options
author | ramil@mysql.com <> | 2005-03-15 13:32:12 +0400 |
---|---|---|
committer | ramil@mysql.com <> | 2005-03-15 13:32:12 +0400 |
commit | 46613bafbe9ee1d25885c78a4960cfb23aa77f75 (patch) | |
tree | 41e3f57ec9e5632602bbaf0aeb4a973e7c77dccb /include | |
parent | 18343b9454e7711b8fea5319360f2f325d8d9d15 (diff) | |
download | mariadb-git-46613bafbe9ee1d25885c78a4960cfb23aa77f75.tar.gz |
A fix (bug #8489: Strange auto_increment behaviour with HEAP table).
Diffstat (limited to 'include')
-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 */ |