summaryrefslogtreecommitdiff
path: root/sql/item_strfunc.h
diff options
context:
space:
mode:
authorunknown <igor@rurik.mysql.com>2005-06-29 02:40:25 -0700
committerunknown <igor@rurik.mysql.com>2005-06-29 02:40:25 -0700
commit3dcf7083a9518a4d4bb6c0c6cd3aad12e6864d02 (patch)
tree26a7b4701df54ab3fcf83d8fceb434fe513a070e /sql/item_strfunc.h
parentdadf91f0ff29d1ac767a16803c3eaca7db3e13ed (diff)
downloadmariadb-git-3dcf7083a9518a4d4bb6c0c6cd3aad12e6864d02.tar.gz
func_str.test:
Added test cases for bug #11469. item_strfunc.h: Fixed bug #11469: wrong implementation of the not_null_tables method for CONCAT_WS. sql/item_strfunc.h: Fixed bug #11469: wrong implementation of the not_null_tables method for CONCAT_WS. mysql-test/t/func_str.test: Added test cases for bug #11469.
Diffstat (limited to 'sql/item_strfunc.h')
-rw-r--r--sql/item_strfunc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/item_strfunc.h b/sql/item_strfunc.h
index 6f6af415086..b01d75b8e02 100644
--- a/sql/item_strfunc.h
+++ b/sql/item_strfunc.h
@@ -95,6 +95,7 @@ public:
String *val_str(String *);
void fix_length_and_dec();
const char *func_name() const { return "concat_ws"; }
+ table_map not_null_tables() const { return 0; }
};
class Item_func_reverse :public Item_str_func