summaryrefslogtreecommitdiff
path: root/sql/item.h
diff options
context:
space:
mode:
authorbell@sanja.is.com.ua <>2003-01-26 21:30:35 +0200
committerbell@sanja.is.com.ua <>2003-01-26 21:30:35 +0200
commit760e22f0bb9e288e1730958adf0f47343d89474a (patch)
treee194c81cba3115272354ebd186e5faa8e278d078 /sql/item.h
parent44d8a8cdab59afcda96379d490a24a314367fde8 (diff)
downloadmariadb-git-760e22f0bb9e288e1730958adf0f47343d89474a.tar.gz
after merge fix of 577 task (SCRUM, pre commit to be able to merge with static tables optimization fix)
fixed derived tables with subselect inside
Diffstat (limited to 'sql/item.h')
-rw-r--r--sql/item.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/item.h b/sql/item.h
index 788d37be491..31c3c48cca8 100644
--- a/sql/item.h
+++ b/sql/item.h
@@ -548,14 +548,14 @@ public:
class Item_ref_on_list_position: public Item_ref_null_helper
{
protected:
- List<Item> &list;
+ st_select_lex *select_lex;
uint pos;
public:
Item_ref_on_list_position(Item_in_subselect* master,
- List<Item> &li, uint num,
+ st_select_lex *sl, uint num,
char *table_name, char *field_name):
Item_ref_null_helper(master, 0, table_name, field_name),
- list(li), pos(num) {}
+ select_lex(sl), pos(num) {}
bool fix_fields(THD *, struct st_table_list *, Item ** ref);
};