diff options
author | Aleksey Midenkov <midenok@gmail.com> | 2017-06-15 16:02:32 +0300 |
---|---|---|
committer | Aleksey Midenkov <midenok@gmail.com> | 2017-06-19 15:21:39 +0300 |
commit | 448374a228aee3cd867d89f1a1eae9884f5bf434 (patch) | |
tree | eb21e9fc41102454aacc899fb0443601e9aef0b1 /sql/unireg.h | |
parent | efaa0d66dafc44d994054c7d6ff160cb295a0bf6 (diff) | |
download | mariadb-git-448374a228aee3cd867d89f1a1eae9884f5bf434.tar.gz |
SQL, IB: (0.10) VTMD tracking [closes #124]
IB: Fixes in logic when to do versioned or usual row updates. Now it is
able to do unversioned updates for versioned tables just by disabling
`TABLE_SHARE::versioned` flag.
SQL: DDL tracking for:
* RENAME TABLE, ALTER TABLE .. RENAME TO;
* DROP TABLE;
* data-modifying operations (f.ex. ALTER TABLE .. ADD/DROP COLUMN).
Diffstat (limited to 'sql/unireg.h')
-rw-r--r-- | sql/unireg.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/unireg.h b/sql/unireg.h index a47114054e1..bf6f0b0209c 100644 --- a/sql/unireg.h +++ b/sql/unireg.h @@ -174,6 +174,7 @@ enum extra2_frm_value_type { EXTRA2_GIS=2, EXTRA2_PERIOD_FOR_SYSTEM_TIME=4, EXTRA2_FIELD_FLAGS=8, + EXTRA2_VTMD=16, #define EXTRA2_ENGINE_IMPORTANT 128 |