mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
Merge spetrunia@bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/home/psergey/mysql-5.0-bug15204 sql/opt_range.cc: Auto merged
This commit is contained in:
commit
98b81f0a6d
1 changed files with 4 additions and 4 deletions
|
@ -3136,10 +3136,10 @@ TRP_ROR_INTERSECT *get_best_covering_ror_intersect(PARAM *param,
|
|||
/* F=F-covered by first(I) */
|
||||
bitmap_union(&covered_fields, &(*ror_scan_mark)->covered_fields);
|
||||
all_covered= bitmap_is_subset(¶m->needed_fields, &covered_fields);
|
||||
} while (!all_covered && (++ror_scan_mark < ror_scans_end));
|
||||
|
||||
if (!all_covered)
|
||||
DBUG_RETURN(NULL); /* should not happen actually */
|
||||
} while ((++ror_scan_mark < ror_scans_end) && !all_covered);
|
||||
|
||||
if (!all_covered || (ror_scan_mark - tree->ror_scans) == 1)
|
||||
DBUG_RETURN(NULL);
|
||||
|
||||
/*
|
||||
Ok, [tree->ror_scans .. ror_scan) holds covering index_intersection with
|
||||
|
|
Loading…
Reference in a new issue