diff options
author | unknown <gkodinov/kgeorge@macbook.gmz> | 2006-09-08 13:10:14 +0300 |
---|---|---|
committer | unknown <gkodinov/kgeorge@macbook.gmz> | 2006-09-08 13:10:14 +0300 |
commit | 0eb5442fd9b42ac10848efbb1ea55e9d7da0c180 (patch) | |
tree | 40e893c94532c2d3de48380e964d87d1c9993064 /sql/sql_yacc.yy | |
parent | 21be389b46ae539a4a917539027636644d7f4dec (diff) | |
download | mariadb-git-0eb5442fd9b42ac10848efbb1ea55e9d7da0c180.tar.gz |
Bug #21772: can not name a column 'upgrade' when create a table in version 5.0.24
Upgrade was a reserved word. Unreserve UPGRADE so it can be used in unquoted identifiers.
mysql-test/r/create.result:
Bug #21772: can not name a column 'upgrade' when create a table in version 5.0.24
- test case
mysql-test/t/create.test:
Bug #21772: can not name a column 'upgrade' when create a table in version 5.0.24
- test case
sql/sql_yacc.yy:
Bug #21772: can not name a column 'upgrade' when create a table in version 5.0.24
- unreserve UPGRADE.
Diffstat (limited to 'sql/sql_yacc.yy')
-rw-r--r-- | sql/sql_yacc.yy | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy index aee810e75ad..97f6cdd27e4 100644 --- a/sql/sql_yacc.yy +++ b/sql/sql_yacc.yy @@ -7555,6 +7555,7 @@ keyword: | TRUNCATE_SYM {} | UNICODE_SYM {} | XA_SYM {} + | UPGRADE_SYM {} ; /* |