diff options
author | unknown <bell@sanja.is.com.ua> | 2004-08-26 13:11:06 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2004-08-26 13:11:06 +0300 |
commit | ac0d94a98ab93a8b0e827384cdbddf94ee90b49b (patch) | |
tree | e62cc35f167b238cbedd495b5718194ee3bbe9e6 /sql/item.h | |
parent | 7bba8128ed65a5d841679fceb8c6c8dd5cac008c (diff) | |
download | mariadb-git-ac0d94a98ab93a8b0e827384cdbddf94ee90b49b.tar.gz |
fix of Item_ref with result_field (BUG#5104)
mysql-test/r/view.result:
distinct in temporary table with a VIEW
mysql-test/t/view.test:
distinct in temporary table with a VIEW
sql/item.cc:
fix of Item_ref with result_field
sql/item.h:
fix of Item_ref with result_field
Diffstat (limited to 'sql/item.h')
-rw-r--r-- | sql/item.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item.h b/sql/item.h index b3dbc0ce46f..f6ad9ed1567 100644 --- a/sql/item.h +++ b/sql/item.h @@ -964,7 +964,7 @@ public: { return (null_value=(*ref)->get_date_result(ltime,fuzzydate)); } - bool send(Protocol *prot, String *tmp){ return (*ref)->send(prot, tmp); } + bool send(Protocol *prot, String *tmp); void make_field(Send_field *field) { (*ref)->make_field(field); } bool fix_fields(THD *, struct st_table_list *, Item **); int save_in_field(Field *field, bool no_conversions) |