~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/select.result

Phase 1 - temporal changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
3217
3217
AND t1.ts BETWEEN "2006-01-01" AND "2006-12-31";
3218
3218
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
3219
3219
1       SIMPLE  t2      const   PRIMARY PRIMARY 4       const   1       
3220
 
1       SIMPLE  t1      range   ts      ts      4       NULL    1       Using where; Using MRR
 
3220
1       SIMPLE  t1      range   ts      ts      5       NULL    1       Using where; Using MRR
3221
3221
Warnings:
3222
3222
Warning 1292    Incorrect datetime value: '2999-12-31 00:00:00' for column 'ts' at row 1
3223
3223
SELECT * FROM t1 LEFT JOIN t2 ON (t1.a=t2.a) WHERE t1.a=30