~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/subselect_notembedded.result

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
create table t1(a int,b int,key(a),key(b));
2
 
insert into t1(a,b) values (1,2),(2,1),(2,3),(3,4),(5,4),(5,5),
3
 
(6,7),(7,4),(5,3);
4
 
5
5
 
4
6
 
3
7
 
2
8
 
1
9
 
26
10
 
25
11
 
24
12
 
23
13
 
22
14
 
21
15
 
20
16
 
19
17
 
18
18
 
17
19
 
16
20
 
15
21
 
14
22
 
13
23
 
12
24
 
11
25
 
10
26
 
9
27
 
8
28
 
7
29
 
6
30
 
5
31
 
4
32
 
3
33
 
2
34
 
1
35
 
drop table t1;
36
 
End of 5.1 tests