Commit 2bd7f329 authored by Marko Mäkelä's avatar Marko Mäkelä

MDEV-16188: Remove redundant !this ||

Fix clang warning: 'this' pointer cannot be null in well-defined C++ code;
pointer may be assumed to always convert to true

The only caller of TABLE::best_range_rowid_filter_for_partial_join()
already seems to be assuming that s->table != NULL.
parent 54ffc499
...@@ -434,7 +434,7 @@ TABLE::best_range_rowid_filter_for_partial_join(uint access_key_no, ...@@ -434,7 +434,7 @@ TABLE::best_range_rowid_filter_for_partial_join(uint access_key_no,
double records, double records,
double access_cost_factor) double access_cost_factor)
{ {
if (!this || range_rowid_filter_cost_info_elems == 0 || if (range_rowid_filter_cost_info_elems == 0 ||
covering_keys.is_set(access_key_no)) covering_keys.is_set(access_key_no))
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment