Commit 33b114aa authored by unknown's avatar unknown

item_func.h:

  Identation correction for the fix of bug #9939.


sql/item_func.h:
  Identation correction for the fix of bug #9939.
parent b4ed58bf
...@@ -189,13 +189,13 @@ class Item_func_numhybrid: public Item_func ...@@ -189,13 +189,13 @@ class Item_func_numhybrid: public Item_func
protected: protected:
Item_result hybrid_type; Item_result hybrid_type;
public: 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_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_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; } enum Item_result result_type () const { return hybrid_type; }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment