summaryrefslogtreecommitdiff
path: root/sql/item_subselect.h
diff options
context:
space:
mode:
authorunknown <bell@sanja.is.com.ua>2003-11-02 17:27:35 +0200
committerunknown <bell@sanja.is.com.ua>2003-11-02 17:27:35 +0200
commit5fe5142694df34c8dbd6b50d130c935126e9f558 (patch)
tree5dc5154988d455ced7025ef0091ac549d6269555 /sql/item_subselect.h
parent1e1d7b17b43907f48ba72cc18cd0537a7071868b (diff)
downloadmariadb-git-5fe5142694df34c8dbd6b50d130c935126e9f558.tar.gz
fixed BUG#1645
all calls of fix_fields() are inspected (copy of cset which I lost in accidatly tree delete) mysql-test/r/subselect.result: test of BUG#1645 mysql-test/t/subselect.test: test of BUG#1645 sql/item_subselect.cc: removed passing left_expr through parameters, because it present in class fields fixed fix_fields() call sql/item_subselect.h: removed passing left_expr through parameters, because it present in class fields sql/set_var.cc: comments added sql/sql_select.cc: fixed BUG#1645 (thd can be used in fix_fields of subqueries)
Diffstat (limited to 'sql/item_subselect.h')
-rw-r--r--sql/item_subselect.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/sql/item_subselect.h b/sql/item_subselect.h
index 7e735165c02..2a7f7b3f441 100644
--- a/sql/item_subselect.h
+++ b/sql/item_subselect.h
@@ -210,10 +210,8 @@ public:
}
trans_res select_transformer(JOIN *join);
trans_res single_value_transformer(JOIN *join,
- Item *left_expr,
compare_func_creator func);
- trans_res row_value_transformer(JOIN * join,
- Item *left_expr);
+ trans_res row_value_transformer(JOIN * join);
longlong val_int();
double val();
String *val_str(String*);