diff options
author | Eugene Kosov <claprix@yandex.ru> | 2019-06-23 19:07:20 +0300 |
---|---|---|
committer | Eugene Kosov <claprix@yandex.ru> | 2019-06-23 20:33:13 +0300 |
commit | ddeeb42e0b1adc2158fa0baec70d84a0ae3e5828 (patch) | |
tree | 148912bb6b066faa1b3e56e2887a57cbe11b875c /sql/item_cmpfunc.h | |
parent | 75833ef9c51e3a2cc57fea048e55ed5670df7b0d (diff) | |
parent | cf40393471b10ca68cc1d2804c22ab9203900978 (diff) | |
download | mariadb-git-ddeeb42e0b1adc2158fa0baec70d84a0ae3e5828.tar.gz |
Merge 10.1 into 10.2
Diffstat (limited to 'sql/item_cmpfunc.h')
-rw-r--r-- | sql/item_cmpfunc.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/item_cmpfunc.h b/sql/item_cmpfunc.h index f14b5676876..5045e39fc5a 100644 --- a/sql/item_cmpfunc.h +++ b/sql/item_cmpfunc.h @@ -268,6 +268,8 @@ public: virtual const char* func_name() const { return "isnottrue"; } Item *get_copy(THD *thd, MEM_ROOT *mem_root) { return get_item_copy<Item_func_isnottrue>(thd, mem_root, this); } + bool eval_not_null_tables(void *opt_arg) + { not_null_tables_cache= 0; return false; } }; @@ -299,6 +301,8 @@ public: virtual const char* func_name() const { return "isnotfalse"; } Item *get_copy(THD *thd, MEM_ROOT *mem_root) { return get_item_copy<Item_func_isnotfalse>(thd, mem_root, this); } + bool eval_not_null_tables(void *opt_arg) + { not_null_tables_cache= 0; return false; } }; |