mirror of
https://github.com/MariaDB/server.git
synced 2025-01-15 19:42:28 +01:00
Add DB_TYPE_AUTOASSIGN as a better name for DB_TYPE_UNKNOWN, which is what plugins should generally use.
This commit is contained in:
parent
aa4ce24cc5
commit
1249c8d0d5
1 changed files with 5 additions and 0 deletions
|
@ -278,6 +278,11 @@ enum legacy_db_type
|
|||
DB_TYPE_FIRST_DYNAMIC=42,
|
||||
DB_TYPE_DEFAULT=127 // Must be last
|
||||
};
|
||||
/*
|
||||
Better name for DB_TYPE_UNKNOWN. Should be used for engines that do not have
|
||||
a hard-coded type value here.
|
||||
*/
|
||||
#define DB_TYPE_AUTOASSIGN DB_TYPE_UNKNOWN
|
||||
|
||||
enum row_type { ROW_TYPE_NOT_USED=-1, ROW_TYPE_DEFAULT, ROW_TYPE_FIXED,
|
||||
ROW_TYPE_DYNAMIC, ROW_TYPE_COMPRESSED,
|
||||
|
|
Loading…
Reference in a new issue