diff options
author | unknown <mskold/marty@mysql.com/linux.site> | 2007-05-09 14:14:27 +0200 |
---|---|---|
committer | unknown <mskold/marty@mysql.com/linux.site> | 2007-05-09 14:14:27 +0200 |
commit | 10e329ffd489d5cac4678b5beb08cbc61bc074a9 (patch) | |
tree | 875b8d59fdaf0a4ab0628a17e5cb451ff99fc821 /sql/handler.h | |
parent | 0db0e2699dbd7de6460f19e836d9fc29b5627444 (diff) | |
download | mariadb-git-10e329ffd489d5cac4678b5beb08cbc61bc074a9.tar.gz |
Bug#26342 auto_increment_increment AND auto_increment_offset REALLY REALLY anger NDB cluster, implemented support for auto_increment_offset and auto_increment_increment for Ndb
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/handler.h b/sql/handler.h index 9863d541b5f..8847d0306fb 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -93,7 +93,8 @@ #define HA_CAN_BIT_FIELD (1 << 28) /* supports bit fields */ #define HA_NEED_READ_RANGE_BUFFER (1 << 29) /* for read_multi_range */ #define HA_ANY_INDEX_MAY_BE_UNIQUE (1 << 30) - +/* The storage engine manages auto_increment itself */ +#define HA_EXTERNAL_AUTO_INCREMENT (1 << 31) /* bits in index_flags(index_number) for what you can do with index */ #define HA_READ_NEXT 1 /* TODO really use this flag */ |