diff options
author | unknown <timour@mysql.com> | 2006-03-31 12:39:33 +0300 |
---|---|---|
committer | unknown <timour@mysql.com> | 2006-03-31 12:39:33 +0300 |
commit | 085aa5c99e7935b0895d09acad13685ba2e6c3e4 (patch) | |
tree | 88258692d6bed7dc04376eda6523507dc716bcd6 /sql/item.h | |
parent | 86504f87851d7eb5947d3bba41ae0ddf45aa92ab (diff) | |
parent | a01d48f92e9c2eebe91e92962b5fdb075978c712 (diff) | |
download | mariadb-git-085aa5c99e7935b0895d09acad13685ba2e6c3e4.tar.gz |
Merge mysql.com:/home/timka/mysql/src/5.0-virgin
into mysql.com:/home/timka/mysql/src/5.0-bug-16710
mysql-test/r/group_min_max.result:
Auto merged
mysql-test/t/group_min_max.test:
Auto merged
sql/item.cc:
Auto merged
sql/item.h:
Auto merged
sql/opt_range.cc:
Auto merged
Diffstat (limited to 'sql/item.h')
-rw-r--r-- | sql/item.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/item.h b/sql/item.h index 2e3e0acc408..3b96091af38 100644 --- a/sql/item.h +++ b/sql/item.h @@ -701,6 +701,7 @@ public: virtual bool remove_fixed(byte * arg) { fixed= 0; return 0; } virtual bool cleanup_processor(byte *arg); virtual bool collect_item_field_processor(byte * arg) { return 0; } + virtual bool find_item_in_field_list_processor(byte *arg) { return 0; } virtual bool change_context_processor(byte *context) { return 0; } virtual bool reset_query_id_processor(byte *query_id) { return 0; } @@ -1149,6 +1150,7 @@ public: bool is_null() { return field->is_null(); } Item *get_tmp_table_item(THD *thd); bool collect_item_field_processor(byte * arg); + bool find_item_in_field_list_processor(byte *arg); bool reset_query_id_processor(byte *arg) { field->query_id= *((query_id_t *) arg); |