~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/errors.result

  • Committer: Stewart Smith
  • Date: 2010-08-12 16:48:46 UTC
  • mto: This revision was merged to the branch mainline in revision 1707.
  • Revision ID: stewart@flamingspork.com-20100812164846-s9bhy47g60bvqs41
bug lp:611379 Equivalent queries with Impossible where return different results

The following two equivalent queries return different results in maria 5.2 and 5.3 (and identical results in mysql 5.5.5) :

SELECT SUM( DISTINCT table1 .`pk` ) FROM B table1 STRAIGHT_JOIN ( BB table2 JOIN CC ON table2 .`col_varchar_key` ) ON table2 .`pk` ;

SELECT * FROM ( SELECT SUM( DISTINCT table1 .`pk` ) FROM B table1 STRAIGHT_JOIN ( BB table2 JOIN CC ON table2 .`col_varchar_key` ) ON table2 .`pk` );

MariaDB returns 0 on the second query and NULL on the first, whereas MySQL returns NULL on both. In MariaDB, both EXPLAIN plans agree that "Impossible WHERE noticed after reading const tables"



We have some slightly different output in drizzle:

main.bug_lp611379 [ fail ]
drizzletest: At line 9: query 'explain select * from (select sum(distinct t1.a) from t1,t2 where t1.a=t2.a)
as t' failed: 1048: Column 'sum(distinct t1.a)' cannot be null

but the fix gets us the correct query results, although with slightly different execution plans.



This fix is directly ported from MariaDB.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
drop table if exists t1;
2
2
insert into t1 values(1);
3
 
ERROR 42S02: Unknown table 'test.t1'
 
3
ERROR 42S02: Table 'test.t1' doesn't exist
4
4
delete from t1;
5
 
ERROR 42S02: Unknown table 'test.t1'
 
5
ERROR 42S02: Table 'test.t1' doesn't exist
6
6
update t1 set a=1;
7
 
ERROR 42S02: Unknown table 'test.t1'
 
7
ERROR 42S02: Table 'test.t1' doesn't exist
8
8
create table t1 (a int);
9
9
select count(test.t1.b) from t1;
10
10
ERROR 42S22: Unknown column 'test.t1.b' in 'field list'
23
23
select count(*),b from t1;
24
24
ERROR 42S22: Unknown column 'b' in 'field list'
25
25
drop table t1;
 
26
create table t1 (a int(256));
 
27
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near '(256))' at line 1
26
28
create table t1 (a varchar(66000));
27
29
ERROR 42000: Column length too big for column 'a' (max = 16383); use BLOB or TEXT instead
28
30
CREATE TABLE t1 (a INT);
29
31
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
30
 
ERROR 22012: Division by 0
 
32
a
 
33
Warnings:
 
34
Error   1365    Division by 0
31
35
INSERT INTO t1 VALUES(1);
32
36
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
33
 
ERROR 22012: Division by 0
 
37
a
 
38
1
 
39
Warnings:
 
40
Error   1365    Division by 0
34
41
INSERT INTO t1 VALUES(2),(3);
35
42
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
36
 
ERROR 22012: Division by 0
 
43
a
 
44
1
 
45
Warnings:
 
46
Error   1365    Division by 0
37
47
DROP TABLE t1;
38
48
CREATE TABLE t1( a INT );
39
49
SELECT b FROM t1;