summaryrefslogtreecommitdiff
path: root/sql/sql_select.h
diff options
context:
space:
mode:
authorVarun Gupta <varun.gupta@mariadb.com>2020-05-20 18:59:52 +0530
committerVarun Gupta <varun.gupta@mariadb.com>2020-11-26 01:20:49 +0530
commitefb171c2eac06508489804601f20c702bca1954c (patch)
tree7da131efa4776cce13a51b632dad3f6df961ec5e /sql/sql_select.h
parentc498250888ec126fddda2867d1239b2a7734482f (diff)
downloadmariadb-git-10.6-mdev22360.tar.gz
MDEV-22360: Sufficient conditions for accurate calculation of join cardinality10.6-mdev22360
The aim of this task is to check if the estimate of join cardinality are accurate or not. The implementation to check if we have the accurate estimate of the join cardinality is a simple one, we have to walk over the WHERE clause. The approach can be broken into 2 cases: Case 1: WHERE clause is an AND conjunct For an AND item at the top level, we need to walk over all the top level conjuncts and call walk individually on them. This is done in such a way because for an AND conjunct at the top level we may have accurate selectivity, even if the predicate belongs to a different column. Eg: t1.a > 10 and t2.a < 5. For this AND item we will have accurate selectivities. For AND conjuncts (not at the top level), the entire conjunct needs to be resolved to one column. Eg: t1.a = t2.a AND ( (t1.a > 5 AND t2.a < 10) OR t1.a <= 0) Case 2: 2a) OR item For an OR item at the top level, we need to make sure that all the columns inside the OR conjunct need to belong to one column directly or indirectly. This needs to happen for an OR conjunct even if it is not at the top level. Eg: (t1.a > 5 or t1.a < 0); 2b) Single predicate at the top level Eg: t1.a= t2.a [ For this case we need to make sure we know number of distinct values for t1.a and t2.a ] t1.a > 5 [ sargable predicate, get the estimate from the range optimizer ] We need to make sure that for the predicates in the WHERE clause we have estimates either from the first component of the index or from the EITS. The implementation of these is covered with the callback function passed to walk function.
Diffstat (limited to 'sql/sql_select.h')
-rw-r--r--sql/sql_select.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/sql_select.h b/sql/sql_select.h
index 2aba63ddc79..4d5a6e0abf5 100644
--- a/sql/sql_select.h
+++ b/sql/sql_select.h
@@ -2531,5 +2531,6 @@ void propagate_new_equalities(THD *thd, Item *cond,
List<Item_equal> *new_equalities,
COND_EQUAL *inherited,
bool *is_simplifiable_cond);
+bool is_range_predicate(Item *item, Item *value);
#endif /* SQL_SELECT_INCLUDED */