~vkolesnikov/pbxt/pbxt-preload-test-bug

« back to all changes in this revision

Viewing changes to pbxt/mysql-test-update/mysql-test/r/row.result

  • Committer: paul-mccullagh
  • Date: 2008-03-10 11:36:34 UTC
  • Revision ID: paul-mccullagh-417ebf175a9c8ee6e5b3777d9e2398e1fb197391
Implemented full durability

Show diffs side-by-side

added added

removed removed

Lines of Context:
262
262
EXPLAIN EXTENDED SELECT * FROM t1,t2 WHERE (t1.a-1,t1.b)=(t2.a-1,t2.b+1);
263
263
id      select_type     table   type    possible_keys   key     key_len ref     rows    filtered        Extra
264
264
1       SIMPLE  t1      index   NULL    PRIMARY 8       NULL    6       100.00  Using index
265
 
1       SIMPLE  t2      index   NULL    PRIMARY 12      NULL    7       100.00  Using where; Using index
 
265
1       SIMPLE  t2      index   NULL    PRIMARY 12      NULL    7       100.00  Using where; Using index; Using join buffer
266
266
Warnings:
267
267
Note    1003    select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b`,`test`.`t2`.`a` AS `a`,`test`.`t2`.`b` AS `b`,`test`.`t2`.`c` AS `c` from `test`.`t1` join `test`.`t2` where (((`test`.`t1`.`a` - 1) = (`test`.`t2`.`a` - 1)) and (`test`.`t1`.`b` = (`test`.`t2`.`b` + 1)))
268
268
SELECT * FROM t1,t2 WHERE (t1.a-1,t1.b)=(t2.a-1,t2.b+1);