summaryrefslogtreecommitdiff
path: root/sql/item_cmpfunc.cc
diff options
context:
space:
mode:
authorOleksandr Byelkin <sanja@mariadb.com>2018-08-21 10:07:26 +0200
committerOleksandr Byelkin <sanja@mariadb.com>2018-08-21 10:07:26 +0200
commitb4210f364003fbea3ccd778b5f5f5dbfc2bfa2f8 (patch)
treedf1647a564cfe504d5ceae00e1bb09ba750bdf77 /sql/item_cmpfunc.cc
parent75dfd4acb995789ca5f86ccbd361fff9d2797e79 (diff)
parentbcc677bb7264db08b22284998706b44c377ed8ec (diff)
downloadmariadb-git-b4210f364003fbea3ccd778b5f5f5dbfc2bfa2f8.tar.gz
Merge branch '10.0' into 10.1
Diffstat (limited to 'sql/item_cmpfunc.cc')
-rw-r--r--sql/item_cmpfunc.cc13
1 files changed, 13 insertions, 0 deletions
diff --git a/sql/item_cmpfunc.cc b/sql/item_cmpfunc.cc
index 6ffd582c133..efd00839e4b 100644
--- a/sql/item_cmpfunc.cc
+++ b/sql/item_cmpfunc.cc
@@ -5120,6 +5120,19 @@ bool Item_func_null_predicate::count_sargable_conds(uchar *arg)
}
+void Item_func_isnull::print(String *str, enum_query_type query_type)
+{
+ str->append(func_name());
+ str->append('(');
+ if (const_item() && !args[0]->maybe_null &&
+ !(query_type & (QT_NO_DATA_EXPANSION | QT_VIEW_INTERNAL)))
+ str->append("/*always not null*/ 1");
+ else
+ args[0]->print(str, query_type);
+ str->append(')');
+}
+
+
longlong Item_func_isnull::val_int()
{
DBUG_ASSERT(fixed == 1);