~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/pbxt/key_diff.result

  • Committer: lbieber
  • Date: 2010-09-22 13:48:54 UTC
  • mfrom: (1784.1.3 build)
  • Revision ID: lbieber@orisndriz08-20100922134854-y7mae2taqhn73vsx
Merge Paul M. - latest changes from PBXT 1.0.11-7
Merge Paul M. - fix bug 641038 - pbxt rollback not working (tables reported as non-transactional)
Merge Andrew - fix show stoppers for new drizzledump

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
select * from t1,t1 as t2;
10
10
a       b       a       b
11
11
A       B       A       B
12
 
b       A       A       B
 
12
A       B       C       c
 
13
A       B       D       E
 
14
A       B       a       a
 
15
A       B       b       A
13
16
C       c       A       B
 
17
C       c       C       c
 
18
C       c       D       E
 
19
C       c       a       a
 
20
C       c       b       A
14
21
D       E       A       B
 
22
D       E       C       c
 
23
D       E       D       E
 
24
D       E       a       a
 
25
D       E       b       A
15
26
a       a       A       B
16
 
A       B       b       A
17
 
b       A       b       A
18
 
C       c       b       A
19
 
D       E       b       A
 
27
a       a       C       c
 
28
a       a       D       E
 
29
a       a       a       a
20
30
a       a       b       A
21
 
A       B       C       c
 
31
b       A       A       B
22
32
b       A       C       c
23
 
C       c       C       c
24
 
D       E       C       c
25
 
a       a       C       c
26
 
A       B       D       E
27
33
b       A       D       E
28
 
C       c       D       E
29
 
D       E       D       E
30
 
a       a       D       E
31
 
A       B       a       a
32
34
b       A       a       a
33
 
C       c       a       a
34
 
D       E       a       a
35
 
a       a       a       a
 
35
b       A       b       A
36
36
explain select t1.*,t2.* from t1,t1 as t2 where t1.A=t2.B;
37
37
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
38
38
1       SIMPLE  t1      ALL     a       NULL    NULL    NULL    5       
39
 
1       SIMPLE  t2      ref     b       b       18      test.t1.a       1       Using where
 
39
1       SIMPLE  t2      ALL     b       NULL    NULL    NULL    5       Using where; Using join buffer
40
40
select t1.*,t2.* from t1,t1 as t2 where t1.A=t2.B order by binary t1.a,t2.a;
41
41
a       b       a       b
42
42
A       B       a       a