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

« back to all changes in this revision

Viewing changes to pbxt/mysql-test-update/mysql-test/r/null.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:
179
179
Warning 1265    Data truncated for column 'i' at row 513
180
180
explain select * from t1 where i=2 or i is null;
181
181
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
182
 
1       SIMPLE  t1      ref     i       i       4       const   1       Using index
 
182
1       SIMPLE  t1      ref     i       i       4       const   20      Using index
183
183
select count(*) from t1 where i=2 or i is null;
184
184
count(*)
185
185
9