diff options
author | unknown <bell@sanja.is.com.ua> | 2003-07-02 13:12:18 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2003-07-02 13:12:18 +0300 |
commit | 29898afbdd4fde10353695365eb4278ad4d005b7 (patch) | |
tree | dccd7660a069e46152b806a02d2f37652155410a /sql/item_row.h | |
parent | 585cec056465764a3812e8d9396d8ca7d501637a (diff) | |
download | mariadb-git-29898afbdd4fde10353695365eb4278ad4d005b7.tar.gz |
Item tree iterator
fixed dependence of items from reduced subquery
(SCRUM)
sql/item.cc:
fixed dependence of items from reduced subquery
sql/item.h:
fixed dependence of items from reduced subquery
Item tree iterator
sql/item_cmpfunc.cc:
Item tree iterator
sql/item_cmpfunc.h:
Item tree iterator
sql/item_func.cc:
Item tree iterator
sql/item_func.h:
Item tree iterator
sql/item_row.cc:
Item tree iterator
sql/item_row.h:
Item tree iterator
sql/item_strfunc.h:
Item tree iterator
sql/item_subselect.cc:
Item tree iterator
Diffstat (limited to 'sql/item_row.h')
-rw-r--r-- | sql/item_row.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/item_row.h b/sql/item_row.h index 867225ae953..6dd955ed426 100644 --- a/sql/item_row.h +++ b/sql/item_row.h @@ -69,6 +69,8 @@ public: enum Item_result result_type() const { return ROW_RESULT; } void update_used_tables(); + bool walk(Item_processor processor, byte *arg); + uint cols() { return arg_count; } Item* el(uint i) { return items[i]; } Item** addr(uint i) { return items + i; } |