summaryrefslogtreecommitdiff
path: root/mysql-test/r/create.result
diff options
context:
space:
mode:
authorunknown <gkodinov/kgeorge@macbook.gmz>2006-09-08 13:10:14 +0300
committerunknown <gkodinov/kgeorge@macbook.gmz>2006-09-08 13:10:14 +0300
commit0eb5442fd9b42ac10848efbb1ea55e9d7da0c180 (patch)
tree40e893c94532c2d3de48380e964d87d1c9993064 /mysql-test/r/create.result
parent21be389b46ae539a4a917539027636644d7f4dec (diff)
downloadmariadb-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 'mysql-test/r/create.result')
-rw-r--r--mysql-test/r/create.result2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/r/create.result b/mysql-test/r/create.result
index 3f8083a0e20..5f885ad199b 100644
--- a/mysql-test/r/create.result
+++ b/mysql-test/r/create.result
@@ -773,3 +773,5 @@ Warnings:
Warning 1071 Specified key was too long; max key length is 765 bytes
insert into t1 values('aaa');
drop table t1;
+create table t1 (upgrade int);
+drop table t1;