diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-04-09 16:20:59 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-04-09 16:20:59 +0200 |
commit | ffbd15eb3242ab9b003c025925a462b5bd24a761 (patch) | |
tree | a12ad27f05eea65cb9c48c666c2f8d4c52408c5d /sql/unireg.h | |
parent | 7ec57f2279b984d071b2c5c24261ee479e1caefc (diff) | |
download | mariadb-git-ffbd15eb3242ab9b003c025925a462b5bd24a761.tar.gz |
post-review comments and other minor edits
Diffstat (limited to 'sql/unireg.h')
-rw-r--r-- | sql/unireg.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sql/unireg.h b/sql/unireg.h index 0ef69beb08a..5e232becbb2 100644 --- a/sql/unireg.h +++ b/sql/unireg.h @@ -175,11 +175,15 @@ binary value of the 'length' bytes. Older MariaDB servers can ignore values of unknown types if - the type code is less than 128. Otherwise older servers are required + the type code is less than 128 (EXTRA2_ENGINE_IMPORTANT). + Otherwise older (but newer than 10.0.1) servers are required to report an error. */ enum extra2_frm_value_type { EXTRA2_TABLEDEF_VERSION=0, + +#define EXTRA2_ENGINE_IMPORTANT 128 + EXTRA2_ENGINE_TABLEOPTS=128, }; |