~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/limit.test

  • Committer: Monty Taylor
  • Date: 2008-09-14 20:39:00 UTC
  • mto: This revision was merged to the branch mainline in revision 388.
  • Revision ID: monty@inaugust.com-20080914203900-knt48bajzet7678i
Renamed drizzle.h to libdrizzle.h.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
update t1 set a=4 where b=1 limit 1;
13
13
select * from t1;
14
14
update t1 set b=2 where b=1 limit 2;
15
 
--sorted_result
16
15
select * from t1;
17
16
update t1 set b=4 where b=1;
18
 
--sorted_result
19
17
select * from t1;
20
18
delete from t1 where b=2 limit 1;
21
 
--sorted_result
22
19
select * from t1;
23
20
delete from t1 limit 1;
24
 
--sorted_result
25
21
select * from t1;
26
22
drop table t1;
27
23
 
31
27
update t1 set i=2 limit 1;
32
28
delete from t1 limit 0;
33
29
update t1 set i=3 limit 0;
34
 
--sorted_result
35
30
select * from t1;
36
31
drop table t1;
37
32