summaryrefslogtreecommitdiff
path: root/sql/item_func.h
diff options
context:
space:
mode:
authorunknown <igor@igor-inspiron.creware.com>2005-06-02 10:00:32 -0700
committerunknown <igor@igor-inspiron.creware.com>2005-06-02 10:00:32 -0700
commit33b114aac25c787ca6a49a099c14af765c19a71b (patch)
treea3aaa9a6aa5be09b1b91e320683bd5f35a0dc5d8 /sql/item_func.h
parentb4ed58bf076984f7543f55d9fbe742ce66361fea (diff)
downloadmariadb-git-33b114aac25c787ca6a49a099c14af765c19a71b.tar.gz
item_func.h:
Identation correction for the fix of bug #9939. sql/item_func.h: Identation correction for the fix of bug #9939.
Diffstat (limited to 'sql/item_func.h')
-rw-r--r--sql/item_func.h6
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; }