summaryrefslogtreecommitdiff
path: root/sql/item_func.h
diff options
context:
space:
mode:
authorunknown <igor@rurik.mysql.com>2005-08-26 22:25:45 -0700
committerunknown <igor@rurik.mysql.com>2005-08-26 22:25:45 -0700
commit28920f5987454c9f28ebddcc9a2babbefa155634 (patch)
treeb1603e07e331943d651cbfb5640464674a6f914f /sql/item_func.h
parentf0aeadcd3cf0e5fe13cdbe5e9142693568912b90 (diff)
downloadmariadb-git-28920f5987454c9f28ebddcc9a2babbefa155634.tar.gz
func_str.result, null.result:
Corrected results after the fix for bug #12791. func_test.result, func_test.test: Added test cases for bug #12791. item_func.h, item_func.cc: Fixed bug #12791. Made LEAST/GREATES fully Oracle compliant. LEAST/GREATEST did not return NULL if only some arguments were NULLs. This did not comply with Oracle. sql/item_func.cc: Fixed bug #12791. Made LEAST/GREATES fully Oracle compliant. LEAST/GREATEST did not return NULL if only some arguments were NULLs. This did not comply with Oracle. sql/item_func.h: Fixed bug #12791. Made LEAST/GREATES fully Oracle compliant. LEAST/GREATEST did not return NULL if only some arguments were NULLs. This did not comply with Oracle. mysql-test/t/func_test.test: Added test cases for bug #12791. mysql-test/r/func_test.result: Added test cases for bug #12791. mysql-test/r/null.result: Corrected results after the fix for bug #12791. mysql-test/r/func_str.result: Corrected results after the fix for bug #12791.
Diffstat (limited to 'sql/item_func.h')
-rw-r--r--sql/item_func.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/sql/item_func.h b/sql/item_func.h
index 384cb486f7c..019abb0c072 100644
--- a/sql/item_func.h
+++ b/sql/item_func.h
@@ -682,7 +682,6 @@ public:
my_decimal *val_decimal(my_decimal *);
void fix_length_and_dec();
enum Item_result result_type () const { return cmp_type; }
- table_map not_null_tables() const { return 0; }
};
class Item_func_min :public Item_func_min_max