summaryrefslogtreecommitdiff
path: root/mysql-test/r/mysqlcheck.result
diff options
context:
space:
mode:
authorunknown <ramil/ram@ramil.myoffice.izhnet.ru>2007-10-31 10:57:10 +0400
committerunknown <ramil/ram@ramil.myoffice.izhnet.ru>2007-10-31 10:57:10 +0400
commitf150962109c7abba649a073d95309d6bd8602de2 (patch)
tree32970fd0a507a675d0071cb45f7262f8d8dd94f6 /mysql-test/r/mysqlcheck.result
parent8b7ee0d67aa1d43b229b10b56c5a9362571c5802 (diff)
parent2611e8ec0c3abac191100ab5c8527ff21ba99d81 (diff)
downloadmariadb-git-f150962109c7abba649a073d95309d6bd8602de2.tar.gz
Merge mysql.com:/home/ram/work/b30654/b30654.5.0
into mysql.com:/home/ram/work/b30654/b30654.5.1 client/mysqlcheck.c: Auto merged mysql-test/r/mysqlcheck.result: Auto merged mysql-test/t/mysqlcheck.test: manual merge.
Diffstat (limited to 'mysql-test/r/mysqlcheck.result')
-rw-r--r--mysql-test/r/mysqlcheck.result7
1 files changed, 6 insertions, 1 deletions
diff --git a/mysql-test/r/mysqlcheck.result b/mysql-test/r/mysqlcheck.result
index b8ada0adff9..54b513bd1b1 100644
--- a/mysql-test/r/mysqlcheck.result
+++ b/mysql-test/r/mysqlcheck.result
@@ -1,4 +1,4 @@
-DROP TABLE IF EXISTS t1;
+DROP TABLE IF EXISTS t1, `t``1`, `t 1`;
drop view if exists v1;
drop database if exists client_test_db;
mysql.columns_priv OK
@@ -57,4 +57,9 @@ test.t1 OK
test.t1 OK
drop view v1;
drop table t1;
+create table `t``1`(a int);
+create table `t 1`(a int);
+test.t 1 OK
+test.t`1 OK
+drop table `t``1`, `t 1`;
End of 5.0 tests