1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

MDEV-14798 Add, drop system versioning semantic and syntax

This commit is contained in:
Eugene Kosov
2018-01-10 16:44:29 +03:00
committed by Sergei Golubchik
parent eedab70c1c
commit f96b1a4e39
5 changed files with 50 additions and 65 deletions

View File

@ -1725,7 +1725,8 @@ struct Vers_parse_info
{
Vers_parse_info() :
versioned_fields(false),
unversioned_fields(false)
unversioned_fields(false),
add_period(false)
{}
struct start_end_t
@ -1789,6 +1790,7 @@ public:
*/
bool versioned_fields : 1;
bool unversioned_fields : 1;
bool add_period : 1; // ADD PERIOD FOR SYSTEM_TIME was specified
};
/**