summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2017-12-01 15:28:33 +0200
committerMarko Mäkelä <marko.makela@mariadb.com>2017-12-01 15:28:48 +0200
commit40bf5c951b6f1241bcb59e3be5303057282079e8 (patch)
tree6a8a607a886dfda1f809577e31f1594f13c3a654
parent8d24bef640565c149e9b8428e3a6738a88e3d6dc (diff)
downloadmariadb-git-40bf5c951b6f1241bcb59e3be5303057282079e8.tar.gz
Fix a Bison warning about semantic type clash in default action
-rw-r--r--sql/sql_yacc.yy2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy
index 0232f4fc5be..17e6904b635 100644
--- a/sql/sql_yacc.yy
+++ b/sql/sql_yacc.yy
@@ -14639,7 +14639,7 @@ keyword_alias:
/* Keyword that we allow for identifiers (except SP labels) */
-keyword: keyword_alias | WINDOW_SYM ;
+keyword: keyword_alias | WINDOW_SYM {};
/*
* Keywords that we allow for labels in SPs.