summaryrefslogtreecommitdiff
path: root/sql/item_cmpfunc.h
diff options
context:
space:
mode:
authorGeorgi Kodinov <joro@sun.com>2010-01-13 12:28:42 +0200
committerGeorgi Kodinov <joro@sun.com>2010-01-13 12:28:42 +0200
commit6e72f4171fbc157885672ab45152564cdd3d1bfa (patch)
treecbdb25a3a54a2e4391cb90fb8e08590f44d099c8 /sql/item_cmpfunc.h
parent4dc7be62a997a0176e300878d4b5e93865606029 (diff)
parent23a3b911409ee7c27937a663ed7a08e13c0adbed (diff)
downloadmariadb-git-6e72f4171fbc157885672ab45152564cdd3d1bfa.tar.gz
merge 5.1-main to 5.1-bugteam
Diffstat (limited to 'sql/item_cmpfunc.h')
-rw-r--r--sql/item_cmpfunc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/item_cmpfunc.h b/sql/item_cmpfunc.h
index f04fcd73b2e..38025ff0af5 100644
--- a/sql/item_cmpfunc.h
+++ b/sql/item_cmpfunc.h
@@ -54,10 +54,10 @@ public:
/* Allow owner function to use string buffers. */
String value1, value2;
- Arg_comparator(): thd(0), a_cache(0), b_cache(0), set_null(0),
+ Arg_comparator(): thd(0), a_cache(0), b_cache(0), set_null(TRUE),
get_value_a_func(0), get_value_b_func(0) {};
Arg_comparator(Item **a1, Item **a2): a(a1), b(a2), thd(0),
- a_cache(0), b_cache(0), set_null(0),
+ a_cache(0), b_cache(0), set_null(TRUE),
get_value_a_func(0), get_value_b_func(0) {};
int set_compare_func(Item_result_field *owner, Item_result type);