diff options
author | unknown <monty@mysql.com> | 2005-03-16 01:15:45 +0200 |
---|---|---|
committer | unknown <monty@mysql.com> | 2005-03-16 01:15:45 +0200 |
commit | da911ec8f150102029708f0abd7d1718c475702b (patch) | |
tree | 1c3a9f53159792621bebada164d840c322b55bf5 /include/heap.h | |
parent | e656fba7788dcb42c2c74a6f5a575f28e284aa03 (diff) | |
download | mariadb-git-da911ec8f150102029708f0abd7d1718c475702b.tar.gz |
Partly reverty back patch (in heap-auto-increment-key detection) to ensure that auto_key and auto_key_type are calculated the same way
heap/hp_create.c:
Partly reverty back patch to ensure that auto_key and auto_key_type are calculated the same way
include/heap.h:
Partly reverty back patch to ensure that auto_key and auto_key_type are calculated the same way
mysql-test/mysql-test-run.sh:
made --skip-ndb a synonyme for --skip-ndbcluster
sql/ha_heap.cc:
Partly reverty back patch to ensure that auto_key and auto_key_type are calculated the same way
Diffstat (limited to 'include/heap.h')
-rw-r--r-- | include/heap.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/heap.h b/include/heap.h index 51f7b0cfa6a..badec9ce2ef 100644 --- a/include/heap.h +++ b/include/heap.h @@ -181,8 +181,10 @@ typedef struct st_heap_info LIST open_list; } HP_INFO; + typedef struct st_heap_create_info { + uint auto_key; /* keynr [1 - maxkey] for auto key */ uint auto_key_type; ulong max_table_size; ulonglong auto_increment; |