diff options
author | Sergei Golubchik <serg@mariadb.org> | 2018-01-18 06:28:37 +0300 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2018-02-23 15:33:22 +0100 |
commit | 9fa715b84d68d5089bae3bfcfda060da816339e0 (patch) | |
tree | 17e4f06bb8bc68715e56d7437a56f4123762377b /sql/handler.h | |
parent | 9f6a7ed2d78af260838658369e7b3308f21d55ec (diff) | |
download | mariadb-git-9fa715b84d68d5089bae3bfcfda060da816339e0.tar.gz |
MDEV-14798 Add, drop system versioning semantic and syntax
SQL: DROP PERIOD FOR SYSTEM_TIME syntax
and remove ER_VERS_SYS_FIELD_EXISTS
originally by: Eugene Kosov
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sql/handler.h b/sql/handler.h index a96e98c2f84..4bb57ecd7dd 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -1726,8 +1726,7 @@ struct Vers_parse_info { Vers_parse_info() : versioned_fields(false), - unversioned_fields(false), - add_period(false) + unversioned_fields(false) {} struct start_end_t @@ -1791,7 +1790,6 @@ public: */ bool versioned_fields : 1; bool unversioned_fields : 1; - bool add_period : 1; // ADD PERIOD FOR SYSTEM_TIME was specified }; /** |