This is a problem with how range optimization is performed during make_join_statistics. The following is NOT a solution for this bug; rather it illustrates the point. If we disable range analysis for all queries, then we will return a correct result. This can be done by changing the following conditional in make_join_statistics such that it always evaluates to false (in fact range analysis is disallowed for materialized subqueries, derived tables, and derived views as noted).
6208 /*
|
6209 Perform range analysis if there are keys it could use (1).
|
6210 Don't do range analysis for materialized subqueries (2).
|
6211 Don't do range analysis for materialized derived tables/views (3)
|
6212 */
|
6213 const bool DEBUG_RANGE_ENABLED= false;
|
6214 if (DEBUG_RANGE_ENABLED && (!s->const_keys.is_clear_all() ||
|
6215 !bitmap_is_clear_all(map: &s->table->cond_set)) && // (1)
|
6216 !s->table->is_filled_at_execution() && // (2)
|
6217 !(s->table->pos_in_table_list->derived && // (3)
|
6218 s->table->pos_in_table_list->is_materialized_derived())) // (3)
|
6219 {
|
6220 bool impossible_range= FALSE;
|
6221 ha_rows records= HA_ROWS_MAX;
|
6222 SQL_SELECT *select= 0;
|
6223 Item **sargable_cond= NULL;
|
6224 if (!s->const_keys.is_clear_all())
|
|
I will continue to debug the issue to a root cause from this point.
Hi, shall we change this bug status as confirmed?
I also try the BLOB data type with NOT NULL, in which a correct result is returned.
It seems that the NOT NULL constraint causes a different calculation from the UNIQUE constraint against the BLOB data type.