summaryrefslogtreecommitdiff
path: root/sql/sql_yacc.yy
diff options
context:
space:
mode:
authorAnel Husakovic <anel@mariadb.org>2018-11-06 03:40:58 -0800
committerSergey Vojtovich <svoj@mariadb.org>2018-11-08 18:39:54 +0400
commitd5e1f6a632ac8cb5ccf7eecf0717290232c0c240 (patch)
tree03a2f884b9f745ff1596639daa3dddc51ef630fd /sql/sql_yacc.yy
parent11df536b8a1a778bfd5908e933ec2306fdf16357 (diff)
downloadmariadb-git-d5e1f6a632ac8cb5ccf7eecf0717290232c0c240.tar.gz
Fix typo sql_yacc
Diffstat (limited to 'sql/sql_yacc.yy')
-rw-r--r--sql/sql_yacc.yy4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy
index 7e8243cbc4b..00297d77771 100644
--- a/sql/sql_yacc.yy
+++ b/sql/sql_yacc.yy
@@ -1693,7 +1693,7 @@ bool my_yyoverflow(short **a, YYSTYPE **b, size_t *yystacksize);
SELECT TIMESTAMP '2001-01-01 10:20:30';
SELECT * FROM t1 FOR SYSTEM_TIME AS OF TIMESTAMP CONCAT(@date,' ',@time);
- - PERIOD: identifier, period for sytem time:
+ - PERIOD: identifier, period for system time:
SELECT period FROM t1;
ALTER TABLE DROP PERIOD FOR SYSTEM TIME;
@@ -1705,7 +1705,7 @@ bool my_yyoverflow(short **a, YYSTYPE **b, size_t *yystacksize);
SELECT user FROM t1;
KILL USER foo;
- Note, we need here only tokens that cause shirt/reduce conflicts
+ Note, we need here only tokens that cause shift/reduce conflicts
with keyword identifiers. For example:
opt_clause1: %empty | KEYWORD ... ;
clause2: opt_clause1 ident;