summaryrefslogtreecommitdiff
path: root/mysql-test/r
diff options
context:
space:
mode:
authorunknown <acurtis@xiphis.org>2005-05-31 19:21:08 +0100
committerunknown <acurtis@xiphis.org>2005-05-31 19:21:08 +0100
commite0fbac193103f528e6991b0f51ad79d9acee6e17 (patch)
tree0d9527791e403f04ca0fc422ad2dfc5da8af7111 /mysql-test/r
parent7b4385f4725f99ed5115b0f89174fc358498cfe0 (diff)
parent2b548fe935b126fb4c0c9bfd109ed7dee778382b (diff)
downloadmariadb-git-e0fbac193103f528e6991b0f51ad79d9acee6e17.tar.gz
Merge acurtis@bk-internal.mysql.com:/home/bk/mysql-4.1
into xiphis.org:/usr/home/antony/work2/p4-bug10413.2
Diffstat (limited to 'mysql-test/r')
-rw-r--r--mysql-test/r/create.result9
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/r/create.result b/mysql-test/r/create.result
index 103bed598ef..cae5e24df18 100644
--- a/mysql-test/r/create.result
+++ b/mysql-test/r/create.result
@@ -563,3 +563,12 @@ select * from t2;
b
1
drop table t1,t2;
+create table t1(column.name int);
+ERROR 42000: Incorrect table name 'column'
+create table t1(test.column.name int);
+ERROR 42000: Incorrect table name 'column'
+create table t1(xyz.t1.name int);
+ERROR 42000: Incorrect database name 'xyz'
+create table t1(t1.name int);
+create table t2(test.t2.name int);
+drop table t1,t2;