diff options
author | unknown <timour@mysql.com> | 2004-12-16 18:44:39 +0200 |
---|---|---|
committer | unknown <timour@mysql.com> | 2004-12-16 18:44:39 +0200 |
commit | 8722bb9a09a1b1c84f909fc6079601127237028a (patch) | |
tree | 2f8ac31128a34219a141a10948e8016064d62856 /mysql-test/r/update.result | |
parent | da2c55b3abf214af17624e82d9963ddf8f3851c0 (diff) | |
download | mariadb-git-8722bb9a09a1b1c84f909fc6079601127237028a.tar.gz |
Moved drop table statement to the end.
mysql-test/r/update.result:
moved drop statement
mysql-test/t/update.test:
moved drop statement
Diffstat (limited to 'mysql-test/r/update.result')
-rw-r--r-- | mysql-test/r/update.result | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/r/update.result b/mysql-test/r/update.result index 08b7f942ccc..2d0903a4dae 100644 --- a/mysql-test/r/update.result +++ b/mysql-test/r/update.result @@ -209,3 +209,4 @@ create table t2 (c1 int, c2 char(6)); insert into t1 values (1, "t1c2-1", 10), (2, "t1c2-2", 20); update t1 left join t2 on t1.c1 = t2.c1 set t2.c2 = "t2c2-1"; update t1 left join t2 on t1.c1 = t2.c1 set t2.c2 = "t2c2-1" where t1.c3 = 10; +drop table t1, t2; |