~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/metadata.result

Phase 1 - temporal changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
select 1, 1.0, -1, "hello", NULL;
3
3
Catalog Database        Table   Table_alias     Column  Column_alias    Type    Length  Max length      Is_null Flags   Decimals        Charsetnr
4
4
def                                     1       5       1       1       N       32897   0       63
5
 
def                                     1.0     11      4       3       N       129     1       63
 
5
def                                     1.0     10      4       3       N       129     1       63
6
6
def                                     -1      5       2       2       N       32897   0       63
7
 
def                                     hello   9       20      5       N       1       31      45
 
7
def                                     hello   8       20      5       N       1       31      45
8
8
def                                     NULL    3       0       0       Y       32896   0       63
9
9
1       1.0     -1      hello   NULL
10
10
1       1.0     -1      hello   NULL
18
18
def     test    t1      t1      e       e       5       20      0       Y       32768   0       63
19
19
def     test    t1      t1      f       f       2       3       0       Y       32768   2       63
20
20
def     test    t1      t1      g       g       2       4       0       Y       32768   3       63
21
 
def     test    t1      t1      h       h       11      7       0       Y       0       4       63
22
 
def     test    t1      t1      j       j       8       10      0       Y       128     0       63
23
 
def     test    t1      t1      k       k       4       19      0       N       9377    0       63
24
 
def     test    t1      t1      l       l       7       19      0       Y       128     0       63
25
 
def     test    t1      t1      m       m       12      4       0       Y       256     0       45
26
 
def     test    t1      t1      n       n       9       40      0       Y       0       0       45
 
21
def     test    t1      t1      h       h       10      7       0       Y       0       4       63
 
22
def     test    t1      t1      j       j       7       10      0       Y       128     0       63
 
23
def     test    t1      t1      k       k       4       19      0       Y       160     0       63
 
24
def     test    t1      t1      l       l       6       19      0       Y       128     0       63
 
25
def     test    t1      t1      m       m       11      4       0       Y       256     0       45
 
26
def     test    t1      t1      n       n       8       40      0       Y       0       0       45
27
27
a       b       c       d       e       f       g       h       j       k       l       m       n
28
28
select a b, b c from t1 as t2;
29
29
Catalog Database        Table   Table_alias     Column  Column_alias    Type    Length  Max length      Is_null Flags   Decimals        Charsetnr
38
38
select t1.id, t1.data, t2.data from t1, t2 where t1.id = t2.id;
39
39
Catalog Database        Table   Table_alias     Column  Column_alias    Type    Length  Max length      Is_null Flags   Decimals        Charsetnr
40
40
def     test    t1      t1      id      id      1       11      1       Y       32768   0       63
41
 
def     test    t1      t1      data    data    9       1020    6       Y       0       0       45
42
 
def     test    t2      t2      data    data    9       12      3       Y       0       0       45
 
41
def     test    t1      t1      data    data    8       1020    6       Y       0       0       45
 
42
def     test    t2      t2      data    data    8       12      3       Y       0       0       45
43
43
id      data    data
44
44
1       male    yes
45
45
2       female  no
46
46
select t1.id, t1.data, t2.data from t1, t2 where t1.id = t2.id order by t1.id;
47
47
Catalog Database        Table   Table_alias     Column  Column_alias    Type    Length  Max length      Is_null Flags   Decimals        Charsetnr
48
48
def     test    t1      t1      id      id      1       11      1       Y       32768   0       63
49
 
def     test    t1      t1      data    data    9       1020    6       Y       0       0       45
50
 
def     test    t2      t2      data    data    9       12      3       Y       0       0       45
 
49
def     test    t1      t1      data    data    8       1020    6       Y       0       0       45
 
50
def     test    t2      t2      data    data    8       12      3       Y       0       0       45
51
51
id      data    data
52
52
1       male    yes
53
53
2       female  no