diff options
author | unknown <bell@sanja.is.com.ua> | 2003-05-30 22:14:52 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2003-05-30 22:14:52 +0300 |
commit | e263b81472a143884a3158c8d6c5c071184d9bf8 (patch) | |
tree | 60857a04240fb59c43ba32365da03b2379a377f3 /sql/sql_select.h | |
parent | f440077bd03869f48ff278bc2b73fab7a30e282b (diff) | |
download | mariadb-git-e263b81472a143884a3158c8d6c5c071184d9bf8.tar.gz |
priventing allocation unused Item_buff (alloc_group_fields())
mysql-test/r/subselect.result:
new test for code coverage
mysql-test/t/subselect.test:
new test for code coverage
sql/sql_select.cc:
priventing allocation unused Item_buff
sql/sql_select.h:
priventing allocation unused Item_buff
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 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; |