diff options
author | unknown <bell@sanja.is.com.ua> | 2002-12-07 16:00:39 +0200 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2002-12-07 16:00:39 +0200 |
commit | 71622d51c39ee8a670d80201545c523d38390c5f (patch) | |
tree | 589392bd88299b6d6ae1605cf6808499e8bbcb7c /sql/item_row.h | |
parent | 265bf238951c3a123c4d6f7fea600175a399cf96 (diff) | |
download | mariadb-git-71622d51c39ee8a670d80201545c523d38390c5f.tar.gz |
Row item fixing (SCRUM related)
Inserted comment
sql/item_row.cc:
Row item fixing
sql/item_row.h:
Row item fixing
sql/sql_select.cc:
Inserted comment
Diffstat (limited to 'sql/item_row.h')
-rw-r--r-- | sql/item_row.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/sql/item_row.h b/sql/item_row.h index 5580250b4fb..d097fca8f1d 100644 --- a/sql/item_row.h +++ b/sql/item_row.h @@ -17,13 +17,17 @@ class Item_row: public Item { bool array_holder; - table_map tables; + table_map used_tables_cache; + bool const_item_cache; uint arg_count; Item **items; public: Item_row(List<Item> &); Item_row(Item_row *item): - Item(), array_holder(0), tables(item->tables), arg_count(item->arg_count), + Item(), array_holder(0), + used_tables_cache(item->used_tables_cache), + const_item_cache(item->const_item_cache), + arg_count(item->arg_count), items(item->items) {} @@ -56,8 +60,10 @@ public: return 0; }; bool fix_fields(THD *thd, TABLE_LIST *tables, Item **ref); - table_map used_tables() const { return tables; }; + table_map used_tables() const { return used_tables_cache; }; + bool const_item() const { return const_item_cache; }; enum Item_result result_type() const { return ROW_RESULT; } + void update_used_tables(); virtual uint cols() { return arg_count; } virtual Item* el(uint i) { return items[i]; } |