summaryrefslogtreecommitdiff
path: root/mysql-test/r/lowercase_table.result
diff options
context:
space:
mode:
authorbell@sanja.is.com.ua <>2004-02-20 22:44:54 +0200
committerbell@sanja.is.com.ua <>2004-02-20 22:44:54 +0200
commit0af6983ed08980616977ee065f9b6f35c963fc90 (patch)
treef09668bcb5a732360f64157d3bb8daee3dd1003c /mysql-test/r/lowercase_table.result
parentc6c1efba7e906605a069e28a1ea72b1e78b49423 (diff)
downloadmariadb-git-0af6983ed08980616977ee065f9b6f35c963fc90.tar.gz
fixed comparation of tables/database names with --lower_case_table_names (BUG#2880)
Diffstat (limited to 'mysql-test/r/lowercase_table.result')
-rw-r--r--mysql-test/r/lowercase_table.result7
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/lowercase_table.result b/mysql-test/r/lowercase_table.result
index 0ba4a4be945..f4e7723a608 100644
--- a/mysql-test/r/lowercase_table.result
+++ b/mysql-test/r/lowercase_table.result
@@ -42,3 +42,10 @@ select count(bags.a) from t1 as Bags;
count(bags.a)
0
drop table t1;
+create table t1 (a int);
+create table t2 (a int);
+delete p1.*,P2.* from t1 as p1, t2 as p2 where p1.a=P2.a;
+delete P1.*,p2.* from t1 as P1, t2 as P2 where P1.a=p2.a;
+update t1 as p1, t2 as p2 SET p1.a=1,P2.a=1 where p1.a=P2.a;
+update t1 as P1, t2 as P2 SET P1.a=1,p2.a=1 where P1.a=p2.a;
+drop table t1,t2;