summaryrefslogtreecommitdiff
path: root/mysql-test/r/update.result
diff options
context:
space:
mode:
authorholyfoot/hf@hfmain.(none) <>2007-03-08 19:08:28 +0400
committerholyfoot/hf@hfmain.(none) <>2007-03-08 19:08:28 +0400
commit75be7cd1aebb833309d0224761558eb1e32b6925 (patch)
tree159b4f318828e8537baa6d0b846728e8f2a0e84b /mysql-test/r/update.result
parent2baf35b4fab1cd1c185b7b98645eb76ed88d9f73 (diff)
parent999c1cdcc1a6c82b69ea75d6661f75ed55f405f1 (diff)
downloadmariadb-git-75be7cd1aebb833309d0224761558eb1e32b6925.tar.gz
Merge mysql.com:/home/hf/work/mrg/mysql-5.0-opt
into mysql.com:/home/hf/work/mrg/mysql-5.1-opt
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 a40d3451a62..94b62625c3f 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,