diff options
author | igor@igor-inspiron.creware.com <> | 2005-06-02 10:00:32 -0700 |
---|---|---|
committer | igor@igor-inspiron.creware.com <> | 2005-06-02 10:00:32 -0700 |
commit | 83fae6432360d12feb19b1ad15f6b4df8bedd556 (patch) | |
tree | a3aaa9a6aa5be09b1b91e320683bd5f35a0dc5d8 /sql/item_func.h | |
parent | c10b32f4b47b00345cda1006de5a1d129225ccf5 (diff) | |
download | mariadb-git-83fae6432360d12feb19b1ad15f6b4df8bedd556.tar.gz |
item_func.h:
Identation correction for the fix of bug #9939.
Diffstat (limited to 'sql/item_func.h')
-rw-r--r-- | sql/item_func.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/item_func.h b/sql/item_func.h index 797aec952f9..f0c7e25ad53 100644 --- a/sql/item_func.h +++ b/sql/item_func.h @@ -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; } |