~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/select_safe.test

  • Committer: Patrick Crews
  • Date: 2010-09-14 20:21:03 UTC
  • mto: (1771.1.1 pcrews)
  • mto: This revision was merged to the branch mainline in revision 1772.
  • Revision ID: gleebix@gmail.com-20100914202103-1db2n0bshzafep19
Moved transaction_log tests into updated non-publisher-based tree

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
--sorted_result
18
18
SELECT SQL_BUFFER_RESULT * from t1;
19
19
update t1 set b="a" where a=1;
20
 
select 1 from t1 CROSS JOIN t1 as t2 CROSS JOIN t1 as t3;
 
20
select 1 from t1,t1 as t2,t1 as t3;
21
21
 
22
22
# The following should NOT give errors:
23
23
update t1 set b="a";
25
25
delete from t1;
26
26
delete from t1 where b="test";
27
27
delete from t1 where a+0=1;
28
 
select 1 from t1 CROSS JOIN t1 as t2 CROSS JOIN t1 as t3 CROSS JOIN t1 as t4 CROSS JOIN t1 as t5;
 
28
select 1 from t1,t1 as t2,t1 as t3,t1 as t4,t1 as t5;
29
29
 
30
30
# The following should be ok:
31
31
update t1 set b="a" limit 1;