~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/select_safe.result

  • Committer: Lee Bieber
  • Date: 2011-01-25 17:15:03 UTC
  • mfrom: (1994.4.55 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2115.
  • Revision ID: kalebral@gmail.com-20110125171503-zyx91pfdyyw9lty5
Merge Marisa - 684803: Need to update Drizzledump documentation with migration conversions / caveats
Merge Marisa - 686641: Need to document removal of multi-table update/delete from Drizzle

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
1       test
14
14
2       test2
15
15
update t1 set b="a" where a=1;
16
 
select 1 from t1 CROSS JOIN t1 as t2 CROSS JOIN t1 as t3;
 
16
select 1 from t1,t1 as t2,t1 as t3;
17
17
1
18
18
1
19
19
1
24
24
delete from t1;
25
25
delete from t1 where b="test";
26
26
delete from t1 where a+0=1;
27
 
select 1 from t1 CROSS JOIN t1 as t2 CROSS JOIN t1 as t3 CROSS JOIN t1 as t4 CROSS JOIN t1 as t5;
 
27
select 1 from t1,t1 as t2,t1 as t3,t1 as t4,t1 as t5;
28
28
1
29
29
update t1 set b="a" limit 1;
30
30
update t1 set b="a" where b="b" limit 2;