diff options
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; } |