summaryrefslogtreecommitdiff
path: root/sql/handler.h
diff options
context:
space:
mode:
authorEugene Kosov <claprix@yandex.ru>2018-01-10 16:44:29 +0300
committerSergei Golubchik <serg@mariadb.org>2018-01-12 21:20:23 +0100
commitf96b1a4e39d1cf633f992fb8838a072ba118c91c (patch)
tree246699b64bc5c2567fd6a6ead69a1116d397fb47 /sql/handler.h
parenteedab70c1c14158f918a54ad70a51f57dabdc113 (diff)
downloadmariadb-git-f96b1a4e39d1cf633f992fb8838a072ba118c91c.tar.gz
MDEV-14798 Add, drop system versioning semantic and syntax
Diffstat (limited to 'sql/handler.h')
-rw-r--r--sql/handler.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/handler.h b/sql/handler.h
index 1a4e83c093d..78e41693ef1 100644
--- a/sql/handler.h
+++ b/sql/handler.h
@@ -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
};
/**