diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-08-26 21:13:17 +0400 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-08-26 21:13:17 +0400 |
commit | a73972bfea653df3b82c89ae9bd61b012757e40b (patch) | |
tree | 4cbe7d768378c5aa305a5f0cc31e2b0ede04568c /sql/handler.h | |
parent | 6140393af068a052639c41e2f09e8aaefda3784c (diff) | |
download | mariadb-git-a73972bfea653df3b82c89ae9bd61b012757e40b.tar.gz |
don't decide on extended keys by DB_TYPE_INNODB, use hton->flags
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/handler.h b/sql/handler.h index c9fce1e773b..0bbed8ad35e 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -1076,6 +1076,7 @@ inline LEX_STRING *hton_name(const handlerton *hton) #define HTON_TEMPORARY_NOT_SUPPORTED (1 << 6) //Having temporary tables not supported #define HTON_SUPPORT_LOG_TABLES (1 << 7) //Engine supports log tables #define HTON_NO_PARTITION (1 << 8) //You can not partition these tables +#define HTON_EXTENDED_KEYS (1 << 9) //supports extended keys class Ha_trx_info; |