diff options
author | Galina Shalygina <galashalygina@gmail.com> | 2017-09-02 23:19:20 +0200 |
---|---|---|
committer | Galina Shalygina <galashalygina@gmail.com> | 2017-09-02 23:19:20 +0200 |
commit | 6bce8e14227bd30a24d8f4abe9417c4be73d83f2 (patch) | |
tree | d5e1a3a2daf0df7938c436c6b3dc6140cf9a3d78 /sql/sql_select.h | |
parent | d76f74d46c03a5560fa817b4481bc6e3f5dfc181 (diff) | |
download | mariadb-git-6bce8e14227bd30a24d8f4abe9417c4be73d83f2.tar.gz |
Post review changes for the optimization of IN predicates into IN subqueries.
Diffstat (limited to 'sql/sql_select.h')
-rw-r--r-- | sql/sql_select.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_select.h b/sql/sql_select.h index ad15ce5eb2c..6e737a9b933 100644 --- a/sql/sql_select.h +++ b/sql/sql_select.h @@ -1648,7 +1648,7 @@ public: bool need_order, bool distinct, const char *message); JOIN_TAB *first_breadth_first_tab() { return join_tab; } - bool transform_in_predicate_into_tvc(THD *thd_arg); + bool transform_in_predicates_into_in_subq(THD *thd); private: /** Create a temporary table to be used for processing DISTINCT/ORDER |