~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/mysql-test/innodb_bug47167.test

  • 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
 
# This is the unit test for bug *47167.
2
 
# It tests setting the global variable
3
 
# "innodb_file_format_check" with a
4
 
# user-Defined Variable.
5
 
 
6
 
--source include/have_innodb.inc
7
 
 
8
 
# Save the value (Antelope) in 'innodb_file_format_check' to
9
 
# 'old_innodb_file_format_check'
10
 
set @old_innodb_file_format_check=@@innodb_file_format_check;
11
 
 
12
 
# @old_innodb_file_format_check shall have the value of 'Antelope'
13
 
select @old_innodb_file_format_check;
14
 
 
15
 
# Reset the value in 'innodb_file_format_check' to 'Barracuda'
16
 
set global innodb_file_format_check = Barracuda;
17
 
 
18
 
select @@innodb_file_format_check;
19
 
 
20
 
# Set 'innodb_file_format_check' to its default value, which
21
 
# is the latest file format supported in the current release.
22
 
set global innodb_file_format_check = DEFAULT;
23
 
 
24
 
select @@innodb_file_format_check;
25
 
 
26
 
# Put the saved value back to 'innodb_file_format_check'
27
 
set global innodb_file_format_check = @old_innodb_file_format_check;
28
 
 
29
 
# Check whether 'innodb_file_format_check' get its original value.
30
 
select @@innodb_file_format_check;
31
 
 
32
 
# Following are negative tests, all should fail.
33
 
--disable_warnings
34
 
--error ER_WRONG_ARGUMENTS
35
 
set global innodb_file_format_check = cheetah;
36
 
 
37
 
--error ER_WRONG_ARGUMENTS
38
 
set global innodb_file_format_check = Bear;
39
 
 
40
 
--error ER_WRONG_ARGUMENTS
41
 
set global innodb_file_format_check = on;
42
 
 
43
 
--error ER_WRONG_ARGUMENTS
44
 
set global innodb_file_format_check = off;
45
 
--enable_warnings