~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-12 02:31:03 UTC
  • mfrom: (2068.7.5 session-fix)
  • mto: This revision was merged to the branch mainline in revision 2076.
  • Revision ID: kalebral@gmail.com-20110112023103-nmz26cv1j32jc6n3
Merge Brian - fix bug 527084 - DROP TABLE: getTableDefiniton returns EEXIST but doDropTable returns ENOENT leads to SIGSEGV

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;