summaryrefslogtreecommitdiff
path: root/mysql-test/r/update.result
diff options
context:
space:
mode:
authorevgen@moonbone.local <>2007-03-05 23:33:57 +0300
committerevgen@moonbone.local <>2007-03-05 23:33:57 +0300
commitf48237929667647fdaca35768070d318cbd92397 (patch)
treeaeb9441aac93f3c8854e6102e86456756188ca94 /mysql-test/r/update.result
parent6274ee84b31a364bd7d0c5a8db9d5f49a2e45672 (diff)
parent629c12316dbf363b2bc8f63e567cb8131896bba5 (diff)
downloadmariadb-git-f48237929667647fdaca35768070d318cbd92397.tar.gz
Merge epotemkin@bk-internal.mysql.com:/home/bk/mysql-4.1-opt
into moonbone.local:/mnt/gentoo64/work/clean-5.0-opt-mysql
Diffstat (limited to 'mysql-test/r/update.result')
-rw-r--r--mysql-test/r/update.result4
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/update.result b/mysql-test/r/update.result
index b3c5760e2c9..748c2644eb9 100644
--- a/mysql-test/r/update.result
+++ b/mysql-test/r/update.result
@@ -377,6 +377,10 @@ create table t1(f1 int, `*f2` int);
insert into t1 values (1,1);
update t1 set `*f2`=1;
drop table t1;
+create table t1(f1 int);
+update t1 set f2=1 order by f2;
+ERROR 42S22: Unknown column 'f2' in 'order clause'
+drop table t1;
CREATE TABLE t1 (
request_id int unsigned NOT NULL auto_increment,
user_id varchar(12) default NULL,