diff options
author | igor@rurik.mysql.com <> | 2005-08-26 22:25:45 -0700 |
---|---|---|
committer | igor@rurik.mysql.com <> | 2005-08-26 22:25:45 -0700 |
commit | f93e7cc77ac1ade235bb28eb99e278916e17d6e0 (patch) | |
tree | b1603e07e331943d651cbfb5640464674a6f914f /sql/item_func.h | |
parent | 0c3c6f8003ea4a97edd89a51211b39ea16e0740a (diff) | |
download | mariadb-git-f93e7cc77ac1ade235bb28eb99e278916e17d6e0.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.
Diffstat (limited to 'sql/item_func.h')
-rw-r--r-- | sql/item_func.h | 1 |
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 |