summaryrefslogtreecommitdiff
path: root/sql/opt_ft.cc
diff options
context:
space:
mode:
Diffstat (limited to 'sql/opt_ft.cc')
-rw-r--r--sql/opt_ft.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/opt_ft.cc b/sql/opt_ft.cc
index b35b3230a39..74349819937 100644
--- a/sql/opt_ft.cc
+++ b/sql/opt_ft.cc
@@ -26,11 +26,11 @@
** Create a FT or QUICK RANGE based on a key
****************************************************************************/
-QUICK_SELECT *get_ft_or_quick_select_for_ref(TABLE *table, JOIN_TAB *tab)
+QUICK_SELECT *get_ft_or_quick_select_for_ref(THD *thd, TABLE *table,
+ JOIN_TAB *tab)
{
if (tab->type == JT_FT)
- return new FT_SELECT(table, &tab->ref);
- else
- return get_quick_select_for_ref(table, &tab->ref);
+ return new FT_SELECT(thd, table, &tab->ref);
+ return get_quick_select_for_ref(thd, table, &tab->ref);
}