summaryrefslogtreecommitdiff
path: root/sql/item_xmlfunc.h
diff options
context:
space:
mode:
authormikael@c-3d08e253.1238-1-64736c10.cust.bredbandsbolaget.se <>2006-05-31 13:32:14 -0400
committermikael@c-3d08e253.1238-1-64736c10.cust.bredbandsbolaget.se <>2006-05-31 13:32:14 -0400
commitfbd7a258e242b13f98e1c12931597b1f87025d4d (patch)
tree39ade1255f49b17f2254392e7ecc88ecfba1018c /sql/item_xmlfunc.h
parentd1b37d9c492d75f9db02d338a3ea232048cff986 (diff)
downloadmariadb-git-fbd7a258e242b13f98e1c12931597b1f87025d4d.tar.gz
BUG#18198: Many strange partition functions were allowed, now only strictly allowed functions are ok
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 53302283296..e11b4eac1e2 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 *);
- virtual bool check_partition_func_processor(byte *bool_arg) { return 0;}
+ bool check_partition_func_processor(byte *bool_arg) { return 0;}
};