diff options
author | unknown <monty@mysql.com> | 2004-03-25 23:29:45 +0200 |
---|---|---|
committer | unknown <monty@mysql.com> | 2004-03-25 23:29:45 +0200 |
commit | 526b25e2633bbc44b867b548f5c7f633517e5b0f (patch) | |
tree | 7815fb40163d1db39e3991dcd19341ef57d08d74 /mysql-test/r/union.result | |
parent | f6e33d67e1132a18e7a6ab49c2b6ff00da5112c8 (diff) | |
parent | 922818a79809d789976e64a8b4faabd305863a7c (diff) | |
download | mariadb-git-526b25e2633bbc44b867b548f5c7f633517e5b0f.tar.gz |
Merge with 4.0
BitKeeper/etc/logging_ok:
auto-union
BitKeeper/deleted/.del-libmysql.def~f5dffcb3ed925d28:
Auto merged
BitKeeper/deleted/.del-post-incoming~9f2168f531f09f3b:
Auto merged
BitKeeper/deleted/.del-post-outgoing~1dd3d8f0f6e8f3cd:
Auto merged
VC++Files/innobase/innobase.dsp:
Auto merged
VC++Files/strings/MASM6x/strings.dsp:
Auto merged
client/mysqldump.c:
Auto merged
innobase/sync/sync0sync.c:
Auto merged
myisam/mi_check.c:
Auto merged
mysql-test/t/union.test:
Auto merged
mysql-test/t/update.test:
Auto merged
mysys/mf_iocache.c:
Auto merged
sql/nt_servc.cc:
Auto merged
mysql-test/r/system_mysql_db.result:
Auto merged
sql/sql_base.cc:
Auto merged
Diffstat (limited to 'mysql-test/r/union.result')
-rw-r--r-- | mysql-test/r/union.result | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/r/union.result b/mysql-test/r/union.result index c00b2732bd1..908c1d285f5 100644 --- a/mysql-test/r/union.result +++ b/mysql-test/r/union.result @@ -434,6 +434,8 @@ create temporary table t1 select a from t1 union select a from t2; drop temporary table t1; create table t1 select a from t1 union select a from t2; ERROR HY000: You can't specify target table 't1' for update in FROM clause +select a from t1 union select a from t2 order by t2.a; +Unknown column 't2.a' in 'ORDER BY' drop table t1,t2; select length(version()) > 1 as `*` UNION select 2; * |