From 839e0947eea1660aa437b77520388e062bac4f63 Mon Sep 17 00:00:00 2001 From: Alexander Barkov Date: Mon, 27 Feb 2017 17:47:06 +0400 Subject: MDEV-12143 sql_mode=ORACLE: make the CONCAT function ignore NULL arguments --- sql/item_strfunc.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sql/item_strfunc.h') diff --git a/sql/item_strfunc.h b/sql/item_strfunc.h index 0ff11796add..5bd7bb14687 100644 --- a/sql/item_strfunc.h +++ b/sql/item_strfunc.h @@ -297,6 +297,9 @@ public: class Item_func_concat_operator_oracle :public Item_func_concat { public: + Item_func_concat_operator_oracle(THD *thd, List &list) + :Item_func_concat(thd, list) + { } Item_func_concat_operator_oracle(THD *thd, Item *a, Item *b) :Item_func_concat(thd, a, b) { } -- cgit v1.2.1