mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
a fix (Bug #4102 Crash with a DBUG window after a request)
This commit is contained in:
parent
b35072e437
commit
6b8222d3a7
1 changed files with 4 additions and 1 deletions
|
@ -820,7 +820,10 @@ public:
|
|||
void save_org_in_field(Field *field) { (*ref)->save_org_in_field(field); }
|
||||
enum Item_result result_type () const { return (*ref)->result_type(); }
|
||||
enum_field_types field_type() const { return (*ref)->field_type(); }
|
||||
table_map used_tables() const { return (*ref)->used_tables(); }
|
||||
table_map used_tables() const
|
||||
{
|
||||
return depended_from ? OUTER_REF_TABLE_BIT : (*ref)->used_tables();
|
||||
}
|
||||
void set_result_field(Field *field) { result_field= field; }
|
||||
bool is_result_field() { return 1; }
|
||||
void save_in_result_field(bool no_conversions)
|
||||
|
|
Loading…
Reference in a new issue