diff options
author | Sergei Golubchik <serg@mariadb.org> | 2017-12-14 18:35:12 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2017-12-14 20:19:14 +0100 |
commit | 18405e5fd994c37698c6fbf0996ecc9e7d1af0f2 (patch) | |
tree | 243f7fdad5d603ca30ead2da414c787683eec2b9 /sql/lex.h | |
parent | f149013393dcef06940cc82f11247ceafb935fae (diff) | |
download | mariadb-git-18405e5fd994c37698c6fbf0996ecc9e7d1af0f2.tar.gz |
Partitioning syntax for versioning
partition by system_time (
partition p0 history,
partition pn current
)
Diffstat (limited to 'sql/lex.h')
-rw-r--r-- | sql/lex.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/lex.h b/sql/lex.h index d31625292e3..bba28012df5 100644 --- a/sql/lex.h +++ b/sql/lex.h @@ -273,6 +273,7 @@ static SYMBOL symbols[] = { { "HAVING", SYM(HAVING)}, { "HELP", SYM(HELP_SYM)}, { "HIGH_PRIORITY", SYM(HIGH_PRIORITY)}, + { "HISTORY", SYM(HISTORY_SYM)}, { "HOST", SYM(HOST_SYM)}, { "HOSTS", SYM(HOSTS_SYM)}, { "HOUR", SYM(HOUR_SYM)}, |