summaryrefslogtreecommitdiff
path: root/sql/item_xmlfunc.h
diff options
context:
space:
mode:
authorunknown <mikael/pappa@dator5.(none)>2006-09-26 02:25:23 -0400
committerunknown <mikael/pappa@dator5.(none)>2006-09-26 02:25:23 -0400
commit35f1ee03287023b0114b28a27f2ca10d4d0fdf0c (patch)
tree17305e768e23a8cb249eb1b127cacdb915fad216 /sql/item_xmlfunc.h
parent2c9ab3a12a58e1796c08e3f298ef58ba9a77688d (diff)
downloadmariadb-git-35f1ee03287023b0114b28a27f2ca10d4d0fdf0c.tar.gz
BUG#18198
Review comments sql/item.h: Added comment after review sql/item_cmpfunc.h: Changed to either return TRUE or FALSE (check_partition_func_processor) sql/item_func.h: Changed to either return TRUE or FALSE (check_partition_func_processor) sql/item_strfunc.h: Changed to either return TRUE or FALSE (check_partition_func_processor) sql/item_timefunc.h: Changed to either return TRUE or FALSE (check_partition_func_processor) sql/item_xmlfunc.h: Changed to either return TRUE or FALSE (check_partition_func_processor)
Diffstat (limited to 'sql/item_xmlfunc.h')
-rw-r--r--sql/item_xmlfunc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_xmlfunc.h b/sql/item_xmlfunc.h
index 513a85aa665..6fa33081373 100644
--- a/sql/item_xmlfunc.h
+++ b/sql/item_xmlfunc.h
@@ -42,7 +42,7 @@ public:
Item_func_xml_extractvalue(Item *a,Item *b) :Item_xml_str_func(a,b) {}
const char *func_name() const { return "extractvalue"; }
String *val_str(String *);
- bool check_partition_func_processor(byte *int_arg) { return FALSE; }
+ bool check_partition_func_processor(byte *int_arg) {return FALSE;}
};