diff options
author | unknown <bell@sanja.is.com.ua> | 2002-12-25 12:51:08 +0200 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2002-12-25 12:51:08 +0200 |
commit | 0ba620214ce9a9b2f22659a438b404badc69c60d (patch) | |
tree | 5a10bf7f80f81ee541cc433cd8a365515d83d7de /sql/item_subselect.h | |
parent | d765d3f37b961e8a83e0c56365de27303d3a986b (diff) | |
download | mariadb-git-0ba620214ce9a9b2f22659a438b404badc69c60d.tar.gz |
more correct argument for translation function (SCRUM related)
fiexd bug in LIMIT check
sql/item_subselect.cc:
more correct argument for translation function
fiexd bug in LIMIT check
sql/item_subselect.h:
more correct argument for translation function
Diffstat (limited to 'sql/item_subselect.h')
-rw-r--r-- | sql/item_subselect.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sql/item_subselect.h b/sql/item_subselect.h index 04f0e6f3c83..6063730d6a8 100644 --- a/sql/item_subselect.h +++ b/sql/item_subselect.h @@ -71,7 +71,7 @@ public: { null_value= 1; } - virtual void select_transformer(st_select_lex *select_lex); + virtual void select_transformer(st_select_lex_unit *unit); bool assigned() { return value_assigned; } void assigned(bool a) { value_assigned= a; } enum Type type() const; @@ -172,10 +172,10 @@ public: null_value= 0; was_null= 0; } - virtual void select_transformer(st_select_lex *select_lex); - void single_value_transformer(st_select_lex *select_lex, + virtual void select_transformer(st_select_lex_unit *unit); + void single_value_transformer(st_select_lex_unit *unit, Item *left_expr, compare_func_creator func); - void row_value_transformer(st_select_lex *select_lex, Item *left_expr); + void row_value_transformer(st_select_lex_unit *unit, Item *left_expr); longlong val_int(); double val(); String *val_str(String*); @@ -194,7 +194,7 @@ public: Item_allany_subselect(THD *thd, Item * left_expr, compare_func_creator f, st_select_lex *select_lex); Item_allany_subselect(Item_allany_subselect *item); - virtual void select_transformer(st_select_lex *select_lex); + virtual void select_transformer(st_select_lex_unit *unit); }; class subselect_engine |