diff options
author | konstantin@mysql.com <> | 2004-10-08 19:13:09 +0400 |
---|---|---|
committer | konstantin@mysql.com <> | 2004-10-08 19:13:09 +0400 |
commit | 234c80b6895314206b2631bfe0825f5787890cb3 (patch) | |
tree | 340f7d7161a03919e35c9d1d393b1ee8b23a5fbf /sql/item_row.h | |
parent | b0154e21dc2804788d3a81a2d90ca29afef5bd5d (diff) | |
download | mariadb-git-234c80b6895314206b2631bfe0825f5787890cb3.tar.gz |
Deployment of centralized Item change registry, step 2: Item_ref
doesn't need to have it's own recovery mechanism.
Diffstat (limited to 'sql/item_row.h')
-rw-r--r-- | sql/item_row.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_row.h b/sql/item_row.h index f87b4f66e80..39bc4513e1e 100644 --- a/sql/item_row.h +++ b/sql/item_row.h @@ -57,7 +57,7 @@ public: return 0; }; bool fix_fields(THD *thd, TABLE_LIST *tables, Item **ref); - void split_sum_func(Item **ref_pointer_array, List<Item> &fields); + void split_sum_func(THD *thd, Item **ref_pointer_array, List<Item> &fields); 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; } |