~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/insert_update.result

  • Committer: Monty Taylor
  • Date: 2009-10-06 19:14:39 UTC
  • mfrom: (1130.2.18 plugin-base-class)
  • mto: This revision was merged to the branch mainline in revision 1184.
  • Revision ID: mordred@inaugust.com-20091006191439-fd1vvlp22654l3k3
Merged latest plugin-base-class.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
SELECT *, VALUES(a) FROM t1;
53
53
a       b       c       VALUES(a)
54
54
1       2       10      NULL
55
 
2       1       11      NULL
56
55
3       4       127     NULL
57
56
5       0       30      NULL
58
57
8       9       60      NULL
 
58
2       1       11      NULL
59
59
explain extended SELECT *, VALUES(a) FROM t1;
60
60
id      select_type     table   type    possible_keys   key     key_len ref     rows    filtered        Extra
61
61
1       SIMPLE  t1      ALL     NULL    NULL    NULL    NULL    5       100.00  
163
163
SELECT *, VALUES(a) FROM t1;
164
164
a       b       c       VALUES(a)
165
165
1       2       10      NULL
166
 
2       1       11      NULL
167
166
3       4       127     NULL
168
167
5       0       30      NULL
169
168
8       9       60      NULL
 
169
2       1       11      NULL
170
170
DROP TABLE t1;
171
171
DROP TABLE t2;
172
172
create table t1 (a int not null unique);