summaryrefslogtreecommitdiff
path: root/sql/sql_select.h
diff options
context:
space:
mode:
authorbell@sanja.is.com.ua <>2003-05-30 22:14:52 +0300
committerbell@sanja.is.com.ua <>2003-05-30 22:14:52 +0300
commit98ffed180888b9e3ec1d7f27f8aa2ae6117522b1 (patch)
tree60857a04240fb59c43ba32365da03b2379a377f3 /sql/sql_select.h
parent0b1dda402308ea51baf6f2f6e03599cd56cdca55 (diff)
downloadmariadb-git-98ffed180888b9e3ec1d7f27f8aa2ae6117522b1.tar.gz
priventing allocation unused Item_buff (alloc_group_fields())
Diffstat (limited to 'sql/sql_select.h')
-rw-r--r--sql/sql_select.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_select.h b/sql/sql_select.h
index 7f3669f7478..1e0f7314e7c 100644
--- a/sql/sql_select.h
+++ b/sql/sql_select.h
@@ -127,7 +127,7 @@ class JOIN :public Sql_alloc
POSITION positions[MAX_TABLES+1],best_positions[MAX_TABLES+1];
double best_read;
List<Item> *fields;
- List<Item_buff> group_fields;
+ List<Item_buff> group_fields, group_fields_cache;
TABLE *tmp_table;
// used to store 2 possible tmp table of SELECT
TABLE *exec_tmp_table1, *exec_tmp_table2;