1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

don't decide on extended keys by DB_TYPE_INNODB, use hton->flags

This commit is contained in:
Sergei Golubchik
2013-08-26 21:13:17 +04:00
parent 6140393af0
commit a73972bfea
4 changed files with 180 additions and 160 deletions

View File

@ -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;