mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
parent
c10b32f4b4
commit
83fae64323
1 changed files with 3 additions and 3 deletions
|
@ -189,13 +189,13 @@ class Item_func_numhybrid: public Item_func
|
|||
protected:
|
||||
Item_result hybrid_type;
|
||||
public:
|
||||
Item_func_numhybrid(Item *a) :Item_func(a),hybrid_type(REAL_RESULT)
|
||||
Item_func_numhybrid(Item *a) :Item_func(a), hybrid_type(REAL_RESULT)
|
||||
{}
|
||||
Item_func_numhybrid(Item *a,Item *b)
|
||||
:Item_func(a,b),hybrid_type(REAL_RESULT)
|
||||
:Item_func(a,b), hybrid_type(REAL_RESULT)
|
||||
{}
|
||||
Item_func_numhybrid(List<Item> &list)
|
||||
:Item_func(list),hybrid_type(REAL_RESULT)
|
||||
:Item_func(list), hybrid_type(REAL_RESULT)
|
||||
{}
|
||||
|
||||
enum Item_result result_type () const { return hybrid_type; }
|
||||
|
|
Loading…
Reference in a new issue