~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/derived.test

  • Committer: Brian Aker
  • Date: 2009-08-04 02:33:47 UTC
  • mto: (1108.2.1 merge)
  • mto: This revision was merged to the branch mainline in revision 1109.
  • Revision ID: brian@gaz-20090804023347-z0ciilv9f2exhlws
Removal multi-update/delete

Show diffs side-by-side

added added

removed removed

Lines of Context:
104
104
#
105
105
create table t1 (a int);
106
106
insert into t1 values (1),(2),(3);
107
 
update (select * from t1) as t1 set a = 5;
108
107
-- error 1064
109
108
delete from (select * from t1);
110
109
-- error 1064