mirror of
https://github.com/MariaDB/server.git
synced 2026-05-06 07:05:33 +02:00
item.h:
Post review change in Item_ref::get_tmp_table_field (bug #11412).
This commit is contained in:
parent
62cf03f8f0
commit
c3feb18396
1 changed files with 4 additions and 1 deletions
|
|
@ -1467,7 +1467,10 @@ public:
|
|||
Field *get_tmp_table_field()
|
||||
{ return result_field ? result_field : (*ref)->get_tmp_table_field(); }
|
||||
Item *get_tmp_table_item(THD *thd)
|
||||
{ return (*ref)->get_tmp_table_item(thd); }
|
||||
{
|
||||
return (result_field ? new Item_field(result_field) :
|
||||
(*ref)->get_tmp_table_item(thd));
|
||||
}
|
||||
table_map used_tables() const
|
||||
{
|
||||
return depended_from ? OUTER_REF_TABLE_BIT : (*ref)->used_tables();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue