summaryrefslogtreecommitdiff
path: root/sql/sql_select.h
diff options
context:
space:
mode:
authorunknown <gkodinov/kgeorge@macbook.gmz>2006-10-17 19:22:13 +0300
committerunknown <gkodinov/kgeorge@macbook.gmz>2006-10-17 19:22:13 +0300
commit71b67e4a534fd4d261a00d682790d5667dbc6c8f (patch)
tree8a5c741148283a59a0dd95c3c86bb17f583b0d50 /sql/sql_select.h
parentc208f46b66c1f1533f09462f0a697a6129fd3881 (diff)
downloadmariadb-git-71b67e4a534fd4d261a00d682790d5667dbc6c8f.tar.gz
rename of the new members introduced in the fix for bug 21798
Diffstat (limited to 'sql/sql_select.h')
-rw-r--r--sql/sql_select.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/sql_select.h b/sql/sql_select.h
index e1ae8677a6e..30b8f834ddf 100644
--- a/sql/sql_select.h
+++ b/sql/sql_select.h
@@ -290,8 +290,8 @@ public:
excessive memory usage.
*/
SORT_FIELD *sortorder; // make_unireg_sortorder()
- TABLE **table_cache; // make_simple_join()
- JOIN_TAB *join_tab_cache; // make_simple_join()
+ TABLE **table_reexec; // make_simple_join()
+ JOIN_TAB *join_tab_reexec; // make_simple_join()
/* end of allocation caching storage */
JOIN(THD *thd_arg, List<Item> &fields_arg, ulonglong select_options_arg,
@@ -320,8 +320,8 @@ public:
exec_tmp_table1= 0;
exec_tmp_table2= 0;
sortorder= 0;
- table_cache= 0;
- join_tab_cache= 0;
+ table_reexec= 0;
+ join_tab_reexec= 0;
thd= thd_arg;
sum_funcs= sum_funcs2= 0;
procedure= 0;