Bug #41229 EXPLAIN CONDS crash when conditions referres to a non-existing field.
Submitted: 4 Dec 2008 14:22 Modified: 1 Feb 2011 11:31
Reporter: Timour Katchaounov Email Updates:
Status: Closed Impact on me:
None 
Category:MySQL Server: Optimizer Severity:S3 (Non-critical)
Version:mysql-6.0-wl4520 OS:Any
Assigned to: CPU Architecture:Any
Tags: crash, explain conds

[4 Dec 2008 14:22] Timour Katchaounov
Description:
MySQL 6.0 tree for WL#4520 EXPLAIN CONDS crashes when an EXPLAIN CONDS
statement refers to a non-existing column in a condition.

How to repeat:
create table t1 (a int);
insert into t1 values (1), (2);
explain conds select * from t1 where t1.x > 1;