~ubuntu-branches/ubuntu/trusty/mariadb-5.5/trusty-proposed

« back to all changes in this revision

Viewing changes to mysql-test/r/select_jcl6.result

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen, Otto Kekäläinen, James Page
  • Date: 2014-03-02 01:38:26 UTC
  • mfrom: (2.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140302013826-z3afnfteqo86pccd
Tags: 5.5.36-1
[ Otto Kekäläinen ]
* New upstream release.
* Updated Danish debconf translation (Closes: #739750).
* d/control: Added explicit Conflicts/Replaces for mysql-5.6 packages
  (Closes: #739841).
* d/control: Update for use of virtual-* packages for switching to/from
  MySQL alternatives.

[ James Page ]
* d/control: Drop Nicholas from Uploaders, MIA (Closes: #739360).
* d/control: Add libjemalloc-dev to BD's.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5326
5326
id      select_type     table   type    possible_keys   key     key_len ref     rows    filtered        Extra
5327
5327
1       SIMPLE  NULL    NULL    NULL    NULL    NULL    NULL    NULL    NULL    Impossible WHERE noticed after reading const tables
5328
5328
Warnings:
5329
 
Note    1003    select 2 AS `pk`,0 AS `a` from `test`.`t1` where (0 <> 0)
 
5329
Note    1003    select 2 AS `pk`,0 AS `a` from `test`.`t1` where 0
5330
5330
DROP TABLE t1;
5331
5331
SELECT * FROM mysql.time_zone 
5332
5332
WHERE ( NOT (Use_leap_seconds <= Use_leap_seconds AND Time_zone_id != 1) 
5349
5349
1       SIMPLE  t1      system  idx     NULL    NULL    NULL    1       100.00  
5350
5350
1       SIMPLE  t2      ref     idx     idx     5       const   1       100.00  Using index
5351
5351
Warnings:
5352
 
Note    1003    select 8 AS `a`,8 AS `b`,`test`.`t2`.`c` AS `c` from `test`.`t2` where ((`test`.`t2`.`c` = 8) and 1)
 
5352
Note    1003    select 8 AS `a`,8 AS `b`,`test`.`t2`.`c` AS `c` from `test`.`t2` where (`test`.`t2`.`c` = 8)
5353
5353
SELECT * FROM t1 INNER JOIN t2 ON ( c = a ) 
5354
5354
WHERE 1 IS NULL OR b < 33 AND b = c;
5355
5355
a       b       c
5473
5473
1       SIMPLE  t2      system  PRIMARY NULL    NULL    NULL    1       100.00  
5474
5474
1       SIMPLE  t1      ALL     NULL    NULL    NULL    NULL    2       100.00  Using where
5475
5475
Warnings:
5476
 
Note    1003    select `test`.`t1`.`pk1` AS `pk1`,`test`.`t1`.`a1` AS `a1`,`test`.`t1`.`b1` AS `b1`,1 AS `pk2`,1 AS `a2` from `test`.`t1` where ((`test`.`t1`.`a1` = 1) and ((`test`.`t1`.`b1` = 6) or 0))
 
5476
Note    1003    select `test`.`t1`.`pk1` AS `pk1`,`test`.`t1`.`a1` AS `a1`,`test`.`t1`.`b1` AS `b1`,1 AS `pk2`,1 AS `a2` from `test`.`t1` where ((`test`.`t1`.`a1` = 1) and (`test`.`t1`.`b1` = 6))
5477
5477
INSERT INTO t1 VALUES (3,1,6);
5478
5478
SELECT * FROM t1, t2
5479
5479
WHERE a1 = pk2 AND ( ( b1 = 6 OR a2 > 4 ) AND pk2 = a2 OR pk1 IS NULL );