diff options
author | tomas@whalegate.ndb.mysql.com <> | 2007-06-17 19:52:01 +0200 |
---|---|---|
committer | tomas@whalegate.ndb.mysql.com <> | 2007-06-17 19:52:01 +0200 |
commit | 8eb940de27c77cb1d0b905cc60672edf7a85c2ae (patch) | |
tree | 1f4cb3049fb4974bac03db9a3399e0bf602714c5 /sql/handler.h | |
parent | 9c5183ace93d0044a4bd4ca35288ec41bcd3e7ac (diff) | |
parent | b5f30a99f9422ee2f95a7375b8e10214beebf4c0 (diff) | |
download | mariadb-git-8eb940de27c77cb1d0b905cc60672edf7a85c2ae.tar.gz |
Merge whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-ndb
into whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-engines
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 a59b7a09740..2680c9859f6 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 */ |