mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
Merged fixes for BUG#6976 and BUG#7079
This commit is contained in:
parent
03acb8155f
commit
6b14f6976f
1 changed files with 4 additions and 0 deletions
|
@ -922,6 +922,10 @@ public:
|
|||
:Item_ref(item, table_name_par, field_name_par) {}
|
||||
/* Constructor need to process subselect with temporary tables (see Item) */
|
||||
Item_direct_ref(THD *thd, Item_direct_ref *item) : Item_ref(thd, item) {}
|
||||
Item_direct_ref(Item **item, const char *table_name_par,
|
||||
const char *field_name_par, Item *src)
|
||||
: Item_ref(item, table_name_par, field_name_par, src) {}
|
||||
|
||||
double val()
|
||||
{
|
||||
double tmp=(*ref)->val();
|
||||
|
|
Loading…
Reference in a new issue