summaryrefslogtreecommitdiff
path: root/mysql-test/r/delete.result
diff options
context:
space:
mode:
authorunknown <ramil/ram@mysql.com/myoffice.izhnet.ru>2006-09-28 10:41:09 +0500
committerunknown <ramil/ram@mysql.com/myoffice.izhnet.ru>2006-09-28 10:41:09 +0500
commit9c95543828d235776141da75be5c5d734dcfb6a3 (patch)
tree0206589b37fadb4693b5e585c4758c2e592ebfd6 /mysql-test/r/delete.result
parent628846013ffc7744313b0c08763ed0862a0952aa (diff)
parentd6d786a07e422104a273a1bbb2c20a02cd76a2b6 (diff)
downloadmariadb-git-9c95543828d235776141da75be5c5d734dcfb6a3.tar.gz
Merge rkalimullin@bk-internal.mysql.com:/home/bk/mysql-5.0-maint
into mysql.com:/usr/home/ram/work/5.0-maint.b22227
Diffstat (limited to 'mysql-test/r/delete.result')
-rw-r--r--mysql-test/r/delete.result4
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/delete.result b/mysql-test/r/delete.result
index 0946dc8f809..9d337a1ed34 100644
--- a/mysql-test/r/delete.result
+++ b/mysql-test/r/delete.result
@@ -172,6 +172,10 @@ a
0
2
DROP TABLE t1;
+create table t1 (a int);
+delete `4.t1` from t1 as `4.t1` where `4.t1`.a = 5;
+delete FROM `4.t1` USING t1 as `4.t1` where `4.t1`.a = 5;
+drop table t1;
CREATE TABLE t1 (a int not null,b int not null);
CREATE TABLE t2 (a int not null, b int not null, primary key (a,b));
CREATE TABLE t3 (a int not null, b int not null, primary key (a,b));