~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/update.result

  • Committer: Brian Aker
  • Date: 2009-07-12 00:49:18 UTC
  • mfrom: (1063.9.51 brian-tmp-fix)
  • Revision ID: brian@gaz-20090712004918-chprmyj387ex6l8a
Merge Stewart

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
place_id        shows
69
69
1       1
70
70
drop table t1;
71
 
CREATE TABLE t1 (
 
71
CREATE TEMPORARY TABLE t1 (
72
72
lfdnr int NOT NULL default '0',
73
73
ticket int NOT NULL default '0',
74
74
client varchar(255) NOT NULL default '',
141
141
insert into t2 values (1,1),(1,2),(1,3);
142
142
update t1 set b=(select distinct 1 from (select * from t2) a);
143
143
drop table t1,t2;
144
 
CREATE TABLE t1 (
 
144
CREATE TEMPORARY TABLE t1 (
145
145
`id_param` int NOT NULL default '0',
146
146
`nom_option` char(40) NOT NULL default '',
147
147
`valid` int NOT NULL default '0',
189
189
a       b
190
190
0       2
191
191
drop table t1;
192
 
create table t1 (a int, b varchar(10), key b(b(5))) engine=myisam;
193
 
create table t2 (a int, b varchar(10)) engine=myisam;
 
192
create temporary table t1 (a int, b varchar(10), key b(b(5))) engine=myisam;
 
193
create temporary table t2 (a int, b varchar(10)) engine=myisam;
194
194
insert into t1 values ( 1, 'abcd1e');
195
195
insert into t1 values ( 2, 'abcd2e');
196
196
insert into t2 values ( 1, 'abcd1e');